Ctrl+Z for YouTube

Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!

O que é Ctrl+Z for YouTube?

Ctrl+Z for YouTube é uma extensão do Chrome desenvolvida por Likbjorn's Software, e sua principal característica é "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Ctrl+Z for YouTube

Baixe arquivos de extensão Ctrl+Z for YouTube 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

                        Ctrl+Z for YouTube extension allows you to rewind your video back after accidental rewind. Press Ctrl+Z to do so. You can specify other hotkey. The source code is available here: https://github.com/Likbjorn/ytcancel .

Update 1.0.2
- Add redo feature.

Update 1.0.3
- Fix buttons on control panel were not shown.                    

Informações Básicas da Extensão

Nome Ctrl+Z for YouTube Ctrl+Z for YouTube
ID goodnjebkdapcafcdipcnlahdppddahg
URL Oficial https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg
Descrição Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Tamanho do Arquivo 13.65 KB
Contagem de Instalações 65
Versão Atual 1.0.3
Última Atualização 2020-08-10
Data de Publicação 2020-05-24
Classificação 4.50/5 Total de 4 Avaliações
Desenvolvedor Likbjorn's Software
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl+Z for YouTube",
    "version": "1.0.3",
    "description": "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "128": "icon128.png"
    }
}