Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

Что такое Twitch VOD Unspoiler?

Twitch VOD Unspoiler - это расширение Chrome, разработанное Kyle Coburn, и его основная функция - "Removes spoilers from Twitch.tv VODs.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Twitch VOD Unspoiler

Скачайте файлы расширений Twitch VOD Unspoiler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        ・Hides references to VOD durations on videos/playback pages, and replaces the scrubber with relative time controls (e.g. -30 seconds/+15 minutes)
・Click the extension's icon to toggle spoilers on a per-channel basis

This extension collects no data, and respects your privacy and battery life. Open source at: https://github.com/ky-is/twitch-vod-unspoiler

(Note you can check the video's current time by clicking the playback Settings icon.)                    

Основная информация о расширении

Название Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
Официальный URL https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
Описание Removes spoilers from Twitch.tv VODs.
Размер файла 8.68 KB
Количество установок 784
Текущая Версия 2.5.6
Последнее Обновление 2023-11-06
Дата публикации 2020-06-06
Рейтинг 4.94/5 Всего 17 оценок
Разработчик Kyle Coburn
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ky-is/twitch-vod-unspoiler
URL страницы помощи https://github.com/ky-is/twitch-vod-unspoiler/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch VOD Unspoiler",
    "version": "2.5.6",
    "description": "Removes spoilers from Twitch.tv VODs.",
    "browser_action": {
        "default_icon": "images\/icon-off.png"
    },
    "icons": {
        "128": "images\/icon-on.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "generated\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/twitch.tv\/*"
            ],
            "css": [
                "generated\/inject.css"
            ],
            "js": [
                "generated\/inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": []
}