Audible Audio Control
Adds a volume controller to the Audible webplayer.
Что такое Audible Audio Control?
Audible Audio Control - это расширение Chrome, разработанное peterphmikkelsen, и его основная функция - "Adds a volume controller to the Audible webplayer.".
Снимки экрана расширения
Скачать файл CRX расширения Audible Audio Control
Скачайте файлы расширений Audible Audio Control в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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}" } } } |