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 |
| 公式URL | 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 |
| Eメール | [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"
]
}
]
} | |