AudibleHero for Audible

Find missing books from your series on www.audible.com

AudibleHero for Audible क्या है?

AudibleHero for Audible eirikb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find missing books from your series on www.audible.com"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AudibleHero for Audible एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        AudibleHero will help you find missing books from series you own.
AudibleHero will not change any data on your audible page, it will only scrape the page for data.

Open AudibleHero by clicking the AudibleHero-icon on the right side in Chrome address bar.

Having issues? Email me at [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम AudibleHero for Audible AudibleHero for Audible
ID hemgkbfmploojfhljdcpbloffgkfamlb
आधिकारिक URL https://chromewebstore.google.com/detail/audiblehero-for-audible/hemgkbfmploojfhljdcpbloffgkfamlb
विवरण Find missing books from your series on www.audible.com
फ़ाइल का आकार 157 KB
स्थापना संख्या 6,000
वर्तमान संस्करण 305
अंतिम अपडेट 2022-08-04
प्रकाशन तिथि 2020-06-10
रेटिंग 2.86/5 कुल 28 रेटिंग्स
डेवलपर eirikb
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AudibleHero for Audible",
    "description": "Find missing books from your series on www.audible.com",
    "version": "305",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.audible.com\/legal\/conditions-of-use?audible=hero",
                "*:\/\/*.audible.com.au\/legal\/conditions-of-use?audible=hero",
                "*:\/\/*.audible.co.uk\/legal\/conditions-of-use?audible=hero"
            ],
            "css": [
                "clear.css",
                "main.css"
            ],
            "js": [
                "init.js",
                "app.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "app.css",
        "fonts\/*",
        "img\/*"
    ],
    "page_action": {
        "default_title": "AudibleHero",
        "default_icon": "logo128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.audible.com\/*",
        "tabs"
    ]
}