Video Speed Control HTML5

Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.

O que é Video Speed Control HTML5?

Video Speed Control HTML5 é uma extensão do Chrome desenvolvida por admin, e sua principal característica é "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Video Speed Control HTML5

Baixe arquivos de extensão Video Speed Control HTML5 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

                        Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.                    

Informações Básicas da Extensão

Nome Video Speed Control HTML5 Video Speed Control HTML5
ID pgeeiieaichainfdhpdanloeimnpofhl
URL Oficial https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl
Descrição Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Tamanho do Arquivo 60.54 KB
Contagem de Instalações 884
Versão Atual 1.1.2
Última Atualização 2022-10-23
Data de Publicação 2022-10-23
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor admin
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Speed Control HTML5",
    "version": "1.1.2",
    "manifest_version": 3,
    "minimum_chrome_version": "89",
    "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.",
    "icons": {
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "bg.js"
    },
    "permissions": [
        "storage",
        "webRequest",
        "tabs"
    ],
    "options_ui": {
        "page": "html5\/options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": {
            "64": "images\/icon64.png"
        },
        "default_popup": "html5\/popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "inject\/inject.css"
            ],
            "js": [
                "inject\/inject.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ct.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ]
}