xbmc playlist adder
The extension to add urls to xbmc
Qu'est-ce que xbmc playlist adder ?
xbmc playlist adder est une extension Chrome développée par shaddyx, et sa fonction principale est "The extension to add urls to xbmc".
Télécharger le fichier CRX de l'extension xbmc playlist adder
Téléchargez les fichiers d'extension xbmc playlist adder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru
Informations de Base sur l'Extension
Nom | xbmc playlist adder |
ID | nohgbcignghkdplaannhnlpafhbimcoe |
URL Officiel | https://chromewebstore.google.com/detail/xbmc-playlist-adder/nohgbcignghkdplaannhnlpafhbimcoe |
Description | The extension to add urls to xbmc |
Taille du Fichier | 3.37 MB |
Nombre d'Installations | 47 |
Version Actuelle | 1.0.8 |
Dernière Mise à Jour | 2016-07-11 |
Date de Publication | 2016-07-11 |
Développeur | shaddyx |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |