Add various search links to Audible (MyAnonaMouse, AudioBookBay, Mobilism, Goodreads, Anna's Archive, Z-Library & more)
Add various search links to Audible.
Currently supported:
• MyAnonaMouse (MAM)
• AudioBookBay (ABB)
• Mobilism
• Goodreads
• Anna’s Archive
• Z-Library
• Libgen
• TorrentGalaxy (TGX)
• BTDig
Many options configurable via settings panel.
New sites can be easily added to the sites
config defined in the code.
mam: {
label: '🐭 MAM',
name: 'MyAnonaMouse',
url: 'https://www.myanonamouse.net',
searchBy: { title: true, titleAuthor: true },
getLink: (search) => {
const baseUrl = GM_config.get('url_mam');
const url = new URL(`${baseUrl}/tor/browse.php`);
url.searchParams.set('tor[text]', search);
return url.href;
}
},