VPSA Lesson Speed

Change video speed in VPSA Self Paced lessons

Was ist VPSA Lesson Speed?

VPSA Lesson Speed ist eine Chrome-Erweiterung, die von alexstore06 entwickelt wurde, und ihr Hauptmerkmal ist "Change video speed in VPSA Self Paced lessons".

Erweiterungsscreenshots

screenshot

VPSA Lesson Speed-Erweiterungs-CRX-Datei herunterladen

Laden Sie VPSA Lesson Speed-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name VPSA Lesson Speed VPSA Lesson Speed
ID daicgjbjbhhngeofbadldopjoicaklaf
Offizielle URL https://chromewebstore.google.com/detail/vpsa-lesson-speed/daicgjbjbhhngeofbadldopjoicaklaf
Beschreibung Change video speed in VPSA Self Paced lessons
Dateigröße 13.88 KB
Installationsanzahl 74
Aktuelle Version 1.1
Letztes Update 2023-11-20
Veröffentlichungsdatum 2023-01-17
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler alexstore06
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}