TikTok Volume Controls

Adds volume control to tiktok's webview

What is TikTok Volume Controls?

TikTok Volume Controls is a Chrome extension developed by underscorenova, and its main feature is "Adds volume control to tiktok's webview".

Extension Screenshots

screenshot

Download TikTok Volume Controls Extension CRX File

Download TikTok Volume Controls extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name TikTok Volume Controls TikTok Volume Controls
ID aekejnnacncliaijpeneblanhjahobip
Official URL https://chrome.google.com/webstore/detail/tiktok-volume-controls/aekejnnacncliaijpeneblanhjahobip
Description Adds volume control to tiktok's webview
File Size 13.29 KB
Installation Count 54
Current Version 1.2
Last Updated 2021-05-07
Publish Date 2021-03-15
Rating 1.00/5 Total 1 Ratings
Developer underscorenova
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}