Video Speed Control HTML5
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Τι είναι το Video Speed Control HTML5;
Το Video Speed Control HTML5 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον admin, και η κύρια λειτουργία του είναι "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Video Speed Control HTML5
Λήψη αρχείων επέκτασης Video Speed Control HTML5 σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | pgeeiieaichainfdhpdanloeimnpofhl |
Επίσημο URL | https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl |
Περιγραφή | Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. |
Μέγεθος Αρχείου | 60.54 KB |
Αριθμός Εγκαταστάσεων | 884 |
Τρέχουσα Έκδοση | 1.1.2 |
Τελευταία Ενημέρωση | 2022-10-23 |
Ημερομηνία Δημοσίευσης | 2022-10-23 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | admin |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Control HTML5", "version": "1.1.2", "manifest_version": 3, "minimum_chrome_version": "89", "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.", "icons": { "128": "images\/icon128.png" }, "background": { "service_worker": "bg.js" }, "permissions": [ "storage", "webRequest", "tabs" ], "options_ui": { "page": "html5\/options.html", "open_in_tab": true }, "action": { "default_icon": { "64": "images\/icon64.png" }, "default_popup": "html5\/popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "match_about_blank": true, "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/*", "https:\/\/meet.google.com\/*" ], "css": [ "inject\/inject.css" ], "js": [ "inject\/inject.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ct.js" ], "run_at": "document_end", "all_frames": false } ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ] } |