Tiktok Audio Control

Control the audio of the video player on tiktoks web client

What is Tiktok Audio Control?

Tiktok Audio Control is a Chrome extension developed by Meeoh, and its main feature is "Control the audio of the video player on tiktoks web client".

Extension Screenshots

screenshot

Download Tiktok Audio Control Extension CRX File

Download Tiktok Audio Control 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 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!                    

Extension Basic Information

Name Tiktok Audio Control Tiktok Audio Control
ID gkkbemmahdfblbnggbdbfhhdbmajpcab
Official URL https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab
Description Control the audio of the video player on tiktoks web client
File Size 39.65 KB
Installation Count 4,000
Current Version 0.1.0
Last Updated 2021-08-25
Publish Date 2020-06-24
Rating 3.58/5 Total 31 Ratings
Developer Meeoh
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}