xbmc playlist adder
The extension to add urls to xbmc
xbmc playlist adder क्या है?
xbmc playlist adder shaddyx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The extension to add urls to xbmc"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में xbmc playlist adder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru
एक्सटेंशन की मूल जानकारी
नाम | xbmc playlist adder |
ID | nohgbcignghkdplaannhnlpafhbimcoe |
आधिकारिक URL | https://chromewebstore.google.com/detail/xbmc-playlist-adder/nohgbcignghkdplaannhnlpafhbimcoe |
विवरण | The extension to add urls to xbmc |
फ़ाइल का आकार | 3.37 MB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 1.0.8 |
अंतिम अपडेट | 2016-07-11 |
प्रकाशन तिथि | 2016-07-11 |
डेवलपर | shaddyx |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "xbmc playlist adder", "version": "1.0.8", "description": "The extension to add urls to xbmc", "manifest_version": 2, "browser_action": { "default_icon": "playlist.png", "default_popup": "window.html" }, "icons": { "16": "playlist.png", "128": "playlist128.png" }, "content_security_policy": "script-src 'self'; object-src 'self';", "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/shared\/jquery.js", "js\/contentScript\/contentScriptUtils.js", "js\/contentScript\/main.js" ] }, { "matches": [ "http:\/\/ex.ua\/*", "http:\/\/www.ex.ua\/*" ], "js": [ "js\/contentScript\/plugins\/ex.js" ] }, { "matches": [ "http:\/\/fs.to\/*", "http:\/\/www.fs.to\/*" ], "js": [ "js\/contentScript\/plugins\/fs.js" ] }, { "matches": [ "https:\/\/vk.com\/*", "https:\/\/www.vk.com\/*" ], "js": [ "js\/contentScript\/plugins\/vk.js" ] } ] } |