Audible Audio Control

Adds a volume controller to the Audible webplayer.

Audible Audio Control क्या है?

Audible Audio Control peterphmikkelsen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a volume controller to the Audible webplayer."।

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

screenshot

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

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

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

                        Audible Volume Control is an extension that was created because I personally was tired of not being able to control the volume when using the Audible web-player.

At the time of writing this, Audible has just announced that they are discontinuing their native Audible app for Windows (it will probably be replaced with the Android version in Windows 11). Soon, the only option will be the web-player.

Should work for all domains.                    

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

नाम Audible Audio Control Audible Audio Control
ID djbhnpbemmoeenglcdojbkmpdmlcgeoi
आधिकारिक URL https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi
विवरण Adds a volume controller to the Audible webplayer.
फ़ाइल का आकार 30.97 KB
स्थापना संख्या 2,133
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2023-09-06
प्रकाशन तिथि 2022-05-24
रेटिंग 5.00/5 कुल 30 रेटिंग्स
डेवलपर peterphmikkelsen
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/peterphmikkelsen/audible-volume-control
सहायता पृष्ठ URL https://github.com/peterphmikkelsen/audible-volume-control/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Audible Audio Control",
    "version": "2.0.0",
    "description": "Adds a volume controller to the Audible webplayer.",
    "icons": {
        "48": "icons\/volume.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "https:\/\/www.audible.*\/webplayer*"
            ],
            "js": [
                "audio-control.js"
            ],
            "css": [
                "audio-control.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{6416fba2-1151-4e0b-ad65-1c36b3994ef1}"
        }
    }
}