VPSA Lesson Speed

Change video speed in VPSA Self Paced lessons

Vad är VPSA Lesson Speed?

VPSA Lesson Speed är en Chrome-tillägg utvecklad av alexstore06, och dess huvudfunktion är "Change video speed in VPSA Self Paced lessons".

Tilläggsskärmbilder

screenshot

Ladda ner VPSA Lesson Speed-förlängningens CRX-fil

Ladda ner VPSA Lesson Speed-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn VPSA Lesson Speed VPSA Lesson Speed
ID daicgjbjbhhngeofbadldopjoicaklaf
Officiell webbadress https://chromewebstore.google.com/detail/vpsa-lesson-speed/daicgjbjbhhngeofbadldopjoicaklaf
Beskrivning Change video speed in VPSA Self Paced lessons
Filstorlek 13.88 KB
Antal Installationer 74
Aktuell Version 1.1
Senast Uppdaterad 2023-11-20
Publiceringsdatum 2023-01-17
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare alexstore06
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}