Tiktok Audio Control
Control the audio of the video player on tiktoks web client
O que é Tiktok Audio Control?
Tiktok Audio Control é uma extensão do Chrome desenvolvida por Meeoh, e sua principal característica é "Control the audio of the video player on tiktoks web client".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tiktok Audio Control
Baixe arquivos de extensão Tiktok 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
Adds a plus and minus volume button and automatically sets the default tiktok volume on chrome to 10%. Increments are 5% but are customizable from the options page!
Informações Básicas da Extensão
Nome | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
URL Oficial | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
Descrição | Control the audio of the video player on tiktoks web client |
Tamanho do Arquivo | 39.65 KB |
Contagem de Instalações | 4,000 |
Versão Atual | 0.1.0 |
Última Atualização | 2021-08-25 |
Data de Publicação | 2020-06-24 |
Classificação | 3.58/5 Total de 31 Avaliações |
Desenvolvedor | Meeoh |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiktok Audio Control", "options_ui": { "page": "src\/options.html", "open_in_tab": false }, "version": "0.1.0", "manifest_version": 2, "description": "Control the audio of the video player on tiktoks web client", "icons": { "16": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "https:\/\/www.tiktok.com\/*", "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/www.tiktok.com\/*" ], "js": [ "src\/index.js" ], "run_at": "document_end" } ] } |