Audible Search Hub

Add various search links to Audible (MyAnonaMouse, AudioBookBay, Mobilism, Goodreads, Anna's Archive, Z-Library & more)

Maker
nongreasyfork
Dagelijks aantal installaties
0
Totaal aantal installaties
1
Beoordelingen
0 0 0
Versie
0.2.2
Gemaakt op
19-09-2024
Bijgewerkt op
21-09-2024
Licentie
MIT
Wordt toegepast op

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;
  }
},