Tiktok Audio Control

Control the audio of the video player on tiktoks web client

ما هو Tiktok Audio Control؟

Tiktok Audio Control هو إضافة Chrome تم تطويرها بواسطة Meeoh، والميزة الرئيسية لها هي "Control the audio of the video player on tiktoks web client".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Tiktok Audio Control

قم بتنزيل ملفات الامتداد Tiktok Audio Control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}