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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru
확장 프로그램 기본 정보
이름 | xbmc playlist adder |
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 |
이메일 | [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" ] } ] } |