Youtube Shorts Control
You can manipulate YouTube shorts in a variety of ways!
Τι είναι το Youtube Shorts Control;
Το Youtube Shorts Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον plmo00456, και η κύρια λειτουργία του είναι "You can manipulate YouTube shorts in a variety of ways!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube Shorts Control
Λήψη αρχείων επέκτασης Youtube Shorts Control σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Control is created to control YouTube shorts! You can control YouTube Shorts as follows. -------------------------------------------------------------------------------------------------------------------------- - AutoPlay: At the end of the video time, the next video will be played automatically. - Progress Bar: You can change the video time using the Progress Bar at the bottom of the Shorts. - Volume control: It will be applied even after the next video or browser restart. - PIP: It can be played automatically even in the PIP state, and 'volume' and 'playback speed' are also maintained. - Playback speed: It can be adjusted to 0.25 to 3x speed, and when pinned, it will be maintained after the next video or browser reboot. -------------------------------------------------------------------------------------------------------------------------- v1.66 - The program has been optimized. v1.70 - Added shortcut help. - Added a play speed control shortcut. - Added a sound control shortcut. v1.72 - The shortcut has been extended. - Added help window dark mode. v1.73 - The program has been optimized. v1.74 - Fix bug where video skips forward more than 10 seconds when pressing keyboard arrow keys
Βασικές Πληροφορίες Επέκτασης
Όνομα | Youtube Shorts Control |
ID | billpckbladoifajmnejlpcffjfcaiho |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-shorts-control/billpckbladoifajmnejlpcffjfcaiho |
Περιγραφή | You can manipulate YouTube shorts in a variety of ways! |
Μέγεθος Αρχείου | 176 KB |
Αριθμός Εγκαταστάσεων | 799 |
Τρέχουσα Έκδοση | 1.74 |
Τελευταία Ενημέρωση | 2024-02-22 |
Ημερομηνία Δημοσίευσης | 2023-12-27 |
Αξιολόγηση | 5.00/5 Συνολικά 12 Αξιολογήσεις |
Προγραμματιστής | plmo00456 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.74", "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "default.css" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "64": "icon_64.png", "128": "icon_128.png" }, "action": { "default_icon": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "64": "icon_64.png", "128": "icon_128.png" } } } |