VPSA Lesson Speed

Change video speed in VPSA Self Paced lessons

Co to jest VPSA Lesson Speed?

VPSA Lesson Speed to rozszerzenie Chrome opracowane przez alexstore06, a jego główną funkcją jest „Change video speed in VPSA Self Paced lessons”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia VPSA Lesson Speed

Pobierz pliki rozszerzeń VPSA Lesson Speed 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

                        Allows you to change the video speed in Veritas Press Self Paced lessons.
Make sure to pin for easy access!
Since the lesson does not open in a tab with an extension bar, you may want to change the speed before launching the lesson. Alternatively, you can just switch to another (or the original) Chrome window after launching the lesson and change the speed there.                    

Podstawowe informacje o rozszerzeniu

Nazwa VPSA Lesson Speed VPSA Lesson Speed
ID daicgjbjbhhngeofbadldopjoicaklaf
Oficjalny URL https://chromewebstore.google.com/detail/vpsa-lesson-speed/daicgjbjbhhngeofbadldopjoicaklaf
Opis Change video speed in VPSA Self Paced lessons
Rozmiar pliku 13.88 KB
Liczba instalacji 74
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-11-20
Data Publikacji 2023-01-17
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper alexstore06
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "VPSA Lesson Speed",
    "description": "Change video speed in VPSA Self Paced lessons",
    "version": "1.1",
    "icons": {
        "16": "veritas-16.png",
        "32": "veritas-32.png",
        "48": "veritas-48.png",
        "128": "veritas-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/sp.veritaspress.com\/*",
                "https:\/\/sp.veritaspress.com\/*"
            ],
            "js": [
                "veritas.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "veritas.html"
    }
}