TikTok Volume Controls

Adds volume control to tiktok's webview

什么是TikTok Volume Controls?

TikTok Volume Controls是由underscorenova开发的Chrome扩展程序,该扩展的主要功能是“Adds volume control to tiktok's webview”。

扩展截图

screenshot

下载TikTok Volume Controls扩展crx文件

下载TikTok Volume Controls扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Adds a volume slider to tiktok's webview, which saves the selected volume in the local storage.                    

扩展基本信息

名称 TikTok Volume Controls TikTok Volume Controls
ID aekejnnacncliaijpeneblanhjahobip
官方URL https://chrome.google.com/webstore/detail/tiktok-volume-controls/aekejnnacncliaijpeneblanhjahobip
简介 Adds volume control to tiktok's webview
文件大小 13.29 KB
安装次数 54
当前版本 1.2
更新时间 2021-05-07
上架时间 2021-03-15
评分 1.00/5 共1次评分
开发者 underscorenova
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TikTok Volume Controls",
    "version": "1.2",
    "description": "Adds volume control to tiktok's webview",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tiktok.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "player.js"
            ]
        }
    ]
}