Speak Faster

Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!

O que é Speak Faster?

Speak Faster é uma extensão do Chrome desenvolvida por viktor.vesely.vv, e sua principal característica é "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Speak Faster

Baixe arquivos de extensão Speak Faster 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

                        Are you tired of watching videos at normal speed? If yes, then this extension is for you! Speed up your school lectures or skip annoying video ads, the sky is the limit...                    

Informações Básicas da Extensão

Nome Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
URL Oficial https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Descrição Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
Tamanho do Arquivo 66.61 KB
Contagem de Instalações 74
Versão Atual 1.3
Última Atualização 2020-05-01
Data de Publicação 2020-05-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor viktor.vesely.vv
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/viktorvesely/speakFaster
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Speak Faster",
    "version": "1.3",
    "description": "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!",
    "manifest_version": 2,
    "icons": {
        "128": "\/assets\/faster-icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/content\/inject.html"
    ],
    "background": {
        "scripts": [
            "\/shared\/msg.js",
            "\/background\/main.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "\/popup\/index.html",
        "default_icon": {
            "128": "\/assets\/faster-icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "\/shared\/msg.js",
                "\/content\/change.js",
                "\/content\/position.js",
                "\/content\/main.js"
            ],
            "css": [
                "\/content\/change.css"
            ]
        }
    ]
}