Skip for YouTube Playlists
Skip to the next song on your playlists from anywhere in Chrome.
Skip for YouTube Playlists क्या है?
Skip for YouTube Playlists Sunny Nahar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Skip to the next song on your playlists from anywhere in Chrome."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Skip for YouTube Playlists एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |