VPSA Lesson Speed
Change video speed in VPSA Self Paced lessons
Τι είναι το VPSA Lesson Speed;
Το VPSA Lesson Speed είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alexstore06, και η κύρια λειτουργία του είναι "Change video speed in VPSA Self Paced lessons".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης VPSA Lesson Speed
Λήψη αρχείων επέκτασης VPSA Lesson Speed σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | VPSA Lesson Speed |
ID | daicgjbjbhhngeofbadldopjoicaklaf |
Επίσημο URL | https://chromewebstore.google.com/detail/vpsa-lesson-speed/daicgjbjbhhngeofbadldopjoicaklaf |
Περιγραφή | Change video speed in VPSA Self Paced lessons |
Μέγεθος Αρχείου | 13.88 KB |
Αριθμός Εγκαταστάσεων | 74 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2023-11-20 |
Ημερομηνία Δημοσίευσης | 2023-01-17 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | alexstore06 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |