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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        }
    ]
}