Video Speed Controller - BETA Channel

BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts

O que é Video Speed Controller - BETA Channel?

Video Speed Controller - BETA Channel é uma extensão do Chrome desenvolvida por Chad Bailey, e sua principal característica é "BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Video Speed Controller - BETA Channel

Baixe arquivos de extensão Video Speed Controller - BETA Channel 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

                        Video Speed Controller - BETA Do not use unless you know what you're doing. If you're unsure, please install the parent project Video Speed Controller instead https://chrome.google.com/webstore/detail/video-speed-controller/nffaoalbilbmmfgbnbgppjihopabppdk                    

Informações Básicas da Extensão

Nome Video Speed Controller - BETA Channel Video Speed Controller - BETA Channel
ID kgciknbfdanakgjeeoihchpljcejkkdj
URL Oficial https://chromewebstore.google.com/detail/video-speed-controller-be/kgciknbfdanakgjeeoihchpljcejkkdj
Descrição BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts
Tamanho do Arquivo 99.57 KB
Contagem de Instalações 147
Versão Atual 0.8.2
Última Atualização 2022-09-10
Data de Publicação 2022-09-06
Desenvolvedor Chad Bailey
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ChadBailey/videospeed-refactoring
URL da Página de Ajuda https://github.com/ChadBailey/videospeed-refactoring/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.8.2",
    "manifest_version": 3,
    "name": "Video Speed Controller - BETA Channel",
    "short_name": "videospeed-controller-beta",
    "description": "BETA testing release of Video Speed Controller. Speed up, slow down, advance and rewind HTML5 audio\/video with shortcuts",
    "homepage_url": "https:\/\/github.com\/ChadBailey\/videospeed-refactoring",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "assets\/html\/options.html",
        "open_in_tab": true
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_title": "Video Speed Controller - BETA Channel",
        "default_popup": "assets\/html\/popup.html",
        "default_icon": {
            "19": "assets\/images\/icon19.png",
            "38": "assets\/images\/icon38.png",
            "48": "assets\/images\/icon48.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "exclude_matches": [
                "https:\/\/plus.google.com\/hangouts\/*",
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "assets\/css\/content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/css\/content.css",
                "background.js.map",
                "content.js.map",
                "options.js.map",
                "popup.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ]
}