xbmc playlist adder
The extension to add urls to xbmc
什麼是xbmc playlist adder?
xbmc playlist adder是由shaddyx開發的Chrome擴展程式,該擴展的主要功能是“The extension to add urls to xbmc”。
下載xbmc playlist adder擴展crx文件
下載xbmc playlist adder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru 擴展基本資訊
| 名稱 | |
| ID | nohgbcignghkdplaannhnlpafhbimcoe |
| 官方網址 | 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"
]
}
]
} | |