Tiktok Audio Control

Control the audio of the video player on tiktoks web client

Qu'est-ce que Tiktok Audio Control ?

Tiktok Audio Control est une extension Chrome développée par Meeoh, et sa fonction principale est "Control the audio of the video player on tiktoks web client".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Tiktok Audio Control

Téléchargez les fichiers d'extension Tiktok Audio Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Tiktok Audio Control Tiktok Audio Control
ID gkkbemmahdfblbnggbdbfhhdbmajpcab
URL Officiel https://chrome.google.com/webstore/detail/tiktok-audio-control/gkkbemmahdfblbnggbdbfhhdbmajpcab
Description Control the audio of the video player on tiktoks web client
Taille du Fichier 39.65 KB
Nombre d'Installations 4,000
Version Actuelle 0.1.0
Dernière Mise à Jour 2021-08-25
Date de Publication 2020-06-24
Évaluation 3.58/5 Total 31 Évaluations
Développeur Meeoh
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}