xbmc playlist adder
The extension to add urls to xbmc
What is xbmc playlist adder?
xbmc playlist adder is a Chrome extension developed by shaddyx, and its main feature is "The extension to add urls to xbmc".
Download xbmc playlist adder Extension CRX File
Download xbmc playlist adder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru
Extension Basic Information
Name | xbmc playlist adder |
ID | nohgbcignghkdplaannhnlpafhbimcoe |
Official URL | https://chromewebstore.google.com/detail/xbmc-playlist-adder/nohgbcignghkdplaannhnlpafhbimcoe |
Description | The extension to add urls to xbmc |
File Size | 3.37 MB |
Installation Count | 47 |
Current Version | 1.0.8 |
Last Updated | 2016-07-11 |
Publish Date | 2016-07-11 |
Developer | shaddyx |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |