Speak Faster

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

Cos'è Speak Faster?

Speak Faster è un'estensione di Chrome sviluppata da viktor.vesely.vv, e la sua funzione principale è "Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Speak Faster

Scarica i file di estensione Speak Faster in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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...                    

Informazioni di Base sull'Estensione

Nome Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
URL Ufficiale https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Descrizione Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
Dimensione del File 66.61 KB
Conteggio Installazioni 74
Versione Corrente 1.3
Ultimo Aggiornamento 2020-05-01
Data di Pubblicazione 2020-05-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore viktor.vesely.vv
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/viktorvesely/speakFaster
Lingue Supportate 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"
            ]
        }
    ]
}