VPSA Lesson Speed
Change video speed in VPSA Self Paced lessons
Cos'è VPSA Lesson Speed?
VPSA Lesson Speed è un'estensione di Chrome sviluppata da alexstore06, e la sua funzione principale è "Change video speed in VPSA Self Paced lessons".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VPSA Lesson Speed
Scarica i file di estensione VPSA Lesson Speed in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | VPSA Lesson Speed |
ID | daicgjbjbhhngeofbadldopjoicaklaf |
URL Ufficiale | https://chromewebstore.google.com/detail/vpsa-lesson-speed/daicgjbjbhhngeofbadldopjoicaklaf |
Descrizione | Change video speed in VPSA Self Paced lessons |
Dimensione del File | 13.88 KB |
Conteggio Installazioni | 74 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-11-20 |
Data di Pubblicazione | 2023-01-17 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | alexstore06 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |