Twitch VOD Unspoiler

Removes spoilers from Twitch.tv VODs.

O que é Twitch VOD Unspoiler?

Twitch VOD Unspoiler é uma extensão do Chrome desenvolvida por Kyle Coburn, e sua principal característica é "Removes spoilers from Twitch.tv VODs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch VOD Unspoiler

Baixe arquivos de extensão Twitch VOD Unspoiler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        ・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.)                    

Informações Básicas da Extensão

Nome Twitch VOD Unspoiler Twitch VOD Unspoiler
ID kjeacdeffkhbcaoobelkgnnlfpaifaoc
URL Oficial https://chromewebstore.google.com/detail/twitch-vod-unspoiler/kjeacdeffkhbcaoobelkgnnlfpaifaoc
Descrição Removes spoilers from Twitch.tv VODs.
Tamanho do Arquivo 8.68 KB
Contagem de Instalações 784
Versão Atual 2.5.6
Última Atualização 2023-11-06
Data de Publicação 2020-06-06
Classificação 4.94/5 Total de 17 Avaliações
Desenvolvedor Kyle Coburn
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ky-is/twitch-vod-unspoiler
URL da Página de Ajuda https://github.com/ky-is/twitch-vod-unspoiler/issues
Idiomas Suportados 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": []
}