Tiktok Audio Control

Control the audio of the video player on tiktoks web client

Tiktok Audio Control क्या है?

Tiktok Audio Control Meeoh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control the audio of the video player on tiktoks web client"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tiktok Audio Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Tiktok Audio Control Tiktok Audio Control
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"
        }
    ]
}