Audible Search Hub

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

安裝腳本?
作者推薦腳本

您可能也會喜歡 Audible Search Marketplaces

安裝腳本
作者
nongreasyfork
今日安裝
0
安裝總數
28
評價
0 0 1
版本
0.2.4
建立日期
2024-09-19
更新日期
2024-10-10
授權條款
MIT
腳本執行於

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