Tiktok Audio Control

Control the audio of the video player on tiktoks web client

Vad är Tiktok Audio Control?

Tiktok Audio Control är en Chrome-tillägg utvecklad av Meeoh, och dess huvudfunktion är "Control the audio of the video player on tiktoks web client".

Tilläggsskärmbilder

screenshot

Ladda ner Tiktok Audio Control-förlängningens CRX-fil

Ladda ner Tiktok Audio Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Tiktok Audio Control Tiktok Audio Control
ID gkkbemmahdfblbnggbdbfhhdbmajpcab
Officiell webbadress https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab
Beskrivning Control the audio of the video player on tiktoks web client
Filstorlek 39.65 KB
Antal Installationer 4,000
Aktuell Version 0.1.0
Senast Uppdaterad 2021-08-25
Publiceringsdatum 2020-06-24
Betyg 3.58/5 Totalt 31 Betyg
Utvecklare Meeoh
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}