Direct Link playlist
A leightweight playlist handler for direct link media
Direct Link playlist क्या है?
Direct Link playlist captaingabi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A leightweight playlist handler for direct link media"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Direct Link playlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple playlist handler for direct links with mp3 mp4 webm files. Features: - add media on all tabs on active window to playlist that has mp3, mp4 or webm extension. - video control buttons - volume control - randomization ensures all videos are played before you see the same video - move videos on the list with drag and drop - small ! icon when no tab is controlled, in this case a new tab will be opened Github: https://github.com/captaingabi/Chrome-YT-playlist
एक्सटेंशन की मूल जानकारी
नाम | |
ID | pijgpdncncnkjhpkgfladhcglhdajiim |
आधिकारिक URL | https://chromewebstore.google.com/detail/direct-link-playlist/pijgpdncncnkjhpkgfladhcglhdajiim |
विवरण | A leightweight playlist handler for direct link media |
फ़ाइल का आकार | 42.05 KB |
स्थापना संख्या | 25 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2020-07-21 |
प्रकाशन तिथि | 2020-07-19 |
डेवलपर | captaingabi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Direct Link playlist", "version": "1.0.0", "description": "A leightweight playlist handler for direct link media", "permissions": [ "activeTab", "storage", "tabs", "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "PNG\/icon16.png", "32": "PNG\/icon32.png", "48": "PNG\/icon48.png", "128": "PNG\/icon128.png" } }, "icons": { "16": "PNG\/icon16.png", "32": "PNG\/icon32.png", "48": "PNG\/icon48.png", "128": "PNG\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*.mp3", "*:\/\/*\/*.mp4", "*:\/\/*\/*.webm" ], "js": [ "content.js" ], "run_at": "document_start" } ], "manifest_version": 2, "web_accessible_resources": [ "SVG\/player.svg" ] } |