xbmc playlist adder
The extension to add urls to xbmc
Was ist xbmc playlist adder?
xbmc playlist adder ist eine Chrome-Erweiterung, die von shaddyx entwickelt wurde, und ihr Hauptmerkmal ist "The extension to add urls to xbmc".
xbmc playlist adder-Erweiterungs-CRX-Datei herunterladen
Laden Sie xbmc playlist adder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru
Grundlegende Informationen zur Erweiterung
Name | |
ID | nohgbcignghkdplaannhnlpafhbimcoe |
Offizielle URL | https://chromewebstore.google.com/detail/xbmc-playlist-adder/nohgbcignghkdplaannhnlpafhbimcoe |
Beschreibung | The extension to add urls to xbmc |
Dateigröße | 3.37 MB |
Installationsanzahl | 47 |
Aktuelle Version | 1.0.8 |
Letztes Update | 2016-07-11 |
Veröffentlichungsdatum | 2016-07-11 |
Entwickler | shaddyx |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |