Speak Faster

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

Co je Speak Faster?

Speak Faster je rozšíření Chrome vyvinuté viktor.vesely.vv, a jeho hlavní funkcí je „Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Speak Faster

Stáhněte si soubory rozšíření Speak Faster ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
Oficiální URL https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Popis Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
Velikost souboru 66.61 KB
Počet instalací 74
Aktuální Verze 1.3
Poslední Aktualizace 2020-05-01
Datum Vydání 2020-05-01
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář viktor.vesely.vv
Typ Platby free
URL Stránky Nápovědy https://github.com/viktorvesely/speakFaster
Podporované Jazyky 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"
            ]
        }
    ]
}