Greasy Fork is available in English.

Audible Search Hub

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

Autore
nongreasyfork
Installazioni giornaliere
0
Installazioni totali
1
Valutazione
0 0 0
Versione
0.2.2
Creato il
19/09/2024
Aggiornato il
21/09/2024
Licenza
MIT
Applica a

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