Youtube tab playlist
Use your tab bar as a playlist!
Youtube tab playlist क्या है?
Youtube tab playlist Mathieu CAROFF द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use your tab bar as a playlist!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube tab playlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
# Youtube Tab Playlist Fork me on Gitlab ;-) https://gitlab.com/caroff/youtube-tab-playlist When a youtube tab finishes playing its video, stop it, select the next youtube tab and start playing it. Note: you might want to use a window dedicated to youtube tabs so as not to be disturbed by the extension automatically selecting the next tab. As of version 0.0.2, the extension loops back to first youtube video tab when the last finishes. In version 0.0.2, the extension does nothing if there's only one youtube video tab open. ### Autoplay If Youtube's autoplay option is enabled, lets the next video be loaded, but stops it from playing. This way, the next time the tab is selected by the extension, it will be a different song. If Youtube's autoplay option is disabled, the same song will be played the next time the tab is selected.
एक्सटेंशन की मूल जानकारी
नाम | Youtube tab playlist |
ID | jdniknngdklahchkeodbcmachonobnbe |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-tab-playlist/jdniknngdklahchkeodbcmachonobnbe |
विवरण | Use your tab bar as a playlist! |
फ़ाइल का आकार | 26.23 KB |
स्थापना संख्या | 41 |
वर्तमान संस्करण | 0.0.2.2 |
अंतिम अपडेट | 2019-03-21 |
प्रकाशन तिथि | 2019-03-21 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Mathieu CAROFF |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://gitlab.com/caroff/youtube-tab-playlist |
सहायता पृष्ठ URL | https://gitlab.com/caroff/youtube-tab-playlist/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube tab playlist", "short_name": "YTP", "description": "Use your tab bar as a playlist!", "manifest_version": 2, "version": "0.0.2.2", "author": "Mathieu CAROFF", "icons": { "32": "icon\/iconB32.png", "48": "icon\/iconB48.png", "64": "icon\/iconB64.png", "128": "icon\/iconB128.png", "256": "icon\/iconB256.png" }, "background": { "scripts": [ "js\/oxlibjs.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/oxlibjs.js", "js\/content.js" ] } ], "permissions": [ "tabs" ] } |