Speak Faster

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

Co to jest Speak Faster?

Speak Faster to rozszerzenie Chrome opracowane przez viktor.vesely.vv, a jego główną funkcją jest „Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Speak Faster

Pobierz pliki rozszerzeń Speak Faster w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Speak Faster Speak Faster
ID momefipaofoflfolnaibdkjpbgpllpfd
Oficjalny URL https://chromewebstore.google.com/detail/speak-faster/momefipaofoflfolnaibdkjpbgpllpfd
Opis Allows you to change the playback speed of video players. Great for listening to lectures and skipping ads!
Rozmiar pliku 66.61 KB
Liczba instalacji 74
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2020-05-01
Data Publikacji 2020-05-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper viktor.vesely.vv
Typ Płatności free
Adres URL Strony Pomocy https://github.com/viktorvesely/speakFaster
Obsługiwane Języki 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"
            ]
        }
    ]
}