xbmc playlist adder
The extension to add urls to xbmc
Hvad er xbmc playlist adder?
xbmc playlist adder er en Chrome-udvidelse udviklet af shaddyx, og dens hovedfunktion er "The extension to add urls to xbmc".
Download xbmc playlist adder-udvidelses-CRX-fil
Download xbmc playlist adder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | nohgbcignghkdplaannhnlpafhbimcoe |
| Officiel URL | https://chromewebstore.google.com/detail/xbmc-playlist-adder/nohgbcignghkdplaannhnlpafhbimcoe |
| Beskrivelse | The extension to add urls to xbmc |
| Filstørrelse | 3.37 MB |
| Antal Installationer | 47 |
| Nuværende Version | 1.0.8 |
| Senest Opdateret | 2016-07-11 |
| Udgivelsesdato | 2016-07-11 |
| Udvikler | shaddyx |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
}
]
} | |