TubeLister
Generate a YouTube playlist from your opened tabs.
TubeLister क्या है?
TubeLister stelabouras द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate a YouTube playlist from your opened tabs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TubeLister एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
TubeLister collects all your open YouTube video tabs into one playlist tab to save memory and hassle! The extension also extracts videos from existing Untitled playlists (that may have been generated before with the extension) and adds them to the list. It also does not add duplicate videos and adds the focused Youtube video as first on the list. This extension is open-source: https://github.com/stelabouras/TubeLister TubeLister Chrome Extension is not affiliated with Google. YouTube is a trademark of Google Inc.
एक्सटेंशन की मूल जानकारी
नाम | TubeLister |
ID | lekljbhoijkojpbdgdbbmonjddaaoibh |
आधिकारिक URL | https://chromewebstore.google.com/detail/tubelister/lekljbhoijkojpbdgdbbmonjddaaoibh |
विवरण | Generate a YouTube playlist from your opened tabs. |
फ़ाइल का आकार | 15.22 KB |
स्थापना संख्या | 1,277 |
वर्तमान संस्करण | 3.0 |
अंतिम अपडेट | 2022-11-04 |
प्रकाशन तिथि | 2017-10-26 |
रेटिंग | 4.41/5 कुल 22 रेटिंग्स |
डेवलपर | stelabouras |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.stelabouras.com/projects/tubelister/ |
गोपनीयता नीति पृष्ठ URL | https://www.linkpack.io/terms |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Stelios Petrakis", "background": { "service_worker": "js\/events.js" }, "action": { "default_icon": { "19": "icons\/icon-19.png", "38": "icons\/icon-76.png" }, "default_title": "TubeLister" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+T" } } }, "description": "Generate a YouTube playlist from your opened tabs.", "homepage_url": "https:\/\/github.com\/stelabouras\/TubeLister", "icons": { "16": "icons\/icon-16.png", "256": "icons\/icon-256.png" }, "web_accessible_resources": [ { "resources": [ "js\/content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "manifest_version": 3, "name": "TubeLister", "permissions": [ "tabs", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "version": "3.0" } |