Skip for YouTube Playlists
Skip to the next song on your playlists from anywhere in Chrome.
Τι είναι το Skip for YouTube Playlists;
Το Skip for YouTube Playlists είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sunny Nahar, και η κύρια λειτουργία του είναι "Skip to the next song on your playlists from anywhere in Chrome.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Skip for YouTube Playlists
Λήψη αρχείων επέκτασης Skip for YouTube Playlists σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
v0.0.0.2 Clicking the browser toolbar icon skips forward. v0.0.0.1 Use keyboard shortcuts to skip to the next and previous song on your playlist from any tab in the Chrome browser. You can set global shortcuts so that this will when you are using other applications as well! You can set the tab which is running your playlist (if you have multiple YouTube tabs open), and use shortcuts to go backward and forward in the playlist. Set the shortcuts in chrome://extensions at Keyboard Shortcuts at the bottom of the page.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Skip for YouTube Playlists |
ID | phhfjgmejoichkchjpbaflhnomjllien |
Επίσημο URL | https://chromewebstore.google.com/detail/skip-for-youtube-playlist/phhfjgmejoichkchjpbaflhnomjllien |
Περιγραφή | Skip to the next song on your playlists from anywhere in Chrome. |
Μέγεθος Αρχείου | 29.3 KB |
Αριθμός Εγκαταστάσεων | 422 |
Τρέχουσα Έκδοση | 0.0.0.2 |
Τελευταία Ενημέρωση | 2016-09-03 |
Ημερομηνία Δημοσίευσης | 2016-09-03 |
Αξιολόγηση | 4.50/5 Συνολικά 16 Αξιολογήσεις |
Προγραμματιστής | Sunny Nahar |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Skip for YouTube Playlists", "description": "Skip to the next song on your playlists from anywhere in Chrome.", "version": "0.0.0.2", "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "commands" ], "background": { "page": "background.html", "persistent": true }, "commands": { "skip-forward": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Skip Forward", "global": true }, "skip-back": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Skip Back", "global": true }, "set-playlist": { "suggested_key": { "default": "Ctrl+Down" }, "description": "Set Playlist Tab" } }, "icons": { "128": "icons\/skip128.png", "19": "icons\/skip19.png", "32": "icons\/skip32.png", "48": "icons\/skip48.png", "64": "icons\/skip64.png" }, "browser_action": { "default_icon": { "19": "icons\/skip19.png" }, "default_title": "Skip to next song" } } |