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)

Tác giả
nongreasyfork
Cài đặt hàng ngày
0
Số lần cài đặt
1
Đánh giá
0 0 0
Phiên bản
0.2.2
Đã tạo
19-09-2024
Đã cập nhật
21-09-2024
Giấy phép
MIT
Áp dụng cho

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