Audible Audio Control
Adds a volume controller to the Audible webplayer.
O que é Audible Audio Control?
Audible Audio Control é uma extensão do Chrome desenvolvida por peterphmikkelsen, e sua principal característica é "Adds a volume controller to the Audible webplayer.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Audible Audio Control
Baixe arquivos de extensão Audible Audio Control no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Audible Audio Control |
ID | djbhnpbemmoeenglcdojbkmpdmlcgeoi |
URL Oficial | https://chromewebstore.google.com/detail/audible-audio-control/djbhnpbemmoeenglcdojbkmpdmlcgeoi |
Descrição | Adds a volume controller to the Audible webplayer. |
Tamanho do Arquivo | 30.97 KB |
Contagem de Instalações | 2,133 |
Versão Atual | 2.0.0 |
Última Atualização | 2023-09-06 |
Data de Publicação | 2022-05-24 |
Classificação | 5.00/5 Total de 30 Avaliações |
Desenvolvedor | peterphmikkelsen |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/peterphmikkelsen/audible-volume-control |
URL da Página de Ajuda | https://github.com/peterphmikkelsen/audible-volume-control/issues |
Idiomas Suportados | 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}" } } } |