Twitch DVR player

Replaces the standard twitch player with a custom one that supports DVR.

O que é Twitch DVR player?

Twitch DVR player é uma extensão do Chrome desenvolvida por kjiang.developer, e sua principal característica é "Replaces the standard twitch player with a custom one that supports DVR.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch DVR player

Baixe arquivos de extensão Twitch DVR player 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

                        Never miss an exciting moment again with Twitch DVR (not actually affiliated with Twitch in any way). Replace the standard Twitch player with one that supports rewinding to any point in the stream! Jump back and forth between live and previous content. Installing the extension will automatically replace the Twitch player with a player that supports DVR. You can toggle between the DVR player and the regular Twitch player at any time.

NOTE: Twitch has added a feature that stops VODs from auto-publishing on some channels (streamer can toggle this on and off). This breaks Twitch DVR Player and unfortunately there's nothing I can do about this if the streamer has it on (they might not know).

Release notes:

1.4.13
- Added Theater Mode button
- Added clearer error messages around clipping and rewind
- Fix bug with clipping VODs

1.4.12
- Sad update: add error screen showing why extension does not work
- Fix issue on Edge where unmuting does not resume stream

1.4.11
- Critical bug fix: stops responding to key presses in chat input box

1.4.10
- Makes clipping more reliable
- Enables clipping in DVR mode                    

Informações Básicas da Extensão

Nome Twitch DVR player Twitch DVR player
ID iaeibhcmabccclfnafahihdndonfgebo
URL Oficial https://chromewebstore.google.com/detail/twitch-dvr-player/iaeibhcmabccclfnafahihdndonfgebo
Descrição Replaces the standard twitch player with a custom one that supports DVR.
Tamanho do Arquivo 83.56 KB
Contagem de Instalações 43,502
Versão Atual 1.4.13
Última Atualização 2022-07-28
Data de Publicação 2020-07-21
Classificação 3.82/5 Total de 73 Avaliações
Desenvolvedor kjiang.developer
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/caeleel/twitch-dvr
URL da Página de Ajuda https://github.com/caeleel/twitch-dvr
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch DVR player",
    "version": "1.4.13",
    "description": "Replaces the standard twitch player with a custom one that supports DVR.",
    "permissions": [
        "https:\/\/*.twitch.tv\/*",
        "https:\/\/*.ttvnw.net\/*",
        "https:\/\/dqrpb9wgowsf5.cloudfront.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "mux.js",
                "index.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "[email protected]",
        "128": "twitch-dvr.png"
    },
    "manifest_version": 2
}