Audible Search Hub

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

Skript installieren?
Vom Ersteller vorgeschlagenes Skript

Ihnen könnte auch Audible Search Marketplaces gefallen.

Skript installieren
Autor
nongreasyfork
Installationen heute
0
Installationen gesamt
23
Bewertungen
0 0 1
Version
0.2.4
Erstellt am
19.09.2024
Letzte Aktualisierung
10.10.2024
Lizenz
MIT
Wird angewandt auf

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