Tiktok Audio Control
Control the audio of the video player on tiktoks web client
什么是Tiktok Audio Control?
Tiktok Audio Control是由Meeoh开发的Chrome扩展程序,该扩展的主要功能是“Control the audio of the video player on tiktoks web client”。
扩展截图
下载Tiktok Audio Control扩展crx文件
下载Tiktok Audio Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
ID | gkkbemmahdfblbnggbdbfhhdbmajpcab |
官方URL | https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab |
简介 | Control the audio of the video player on tiktoks web client |
文件大小 | 39.65 KB |
安装次数 | 4,000 |
当前版本 | 0.1.0 |
更新时间 | 2021-08-25 |
上架时间 | 2020-06-24 |
评分 | 3.58/5 共31次评分 |
开发者 | Meeoh |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } ] } |