xbmc playlist adder
The extension to add urls to xbmc
xbmc playlist adder là gì?
xbmc playlist adder là một tiện ích mở rộng Chrome được phát triển bởi shaddyx, và tính năng chính của nó là "The extension to add urls to xbmc".
Tải xuống tệp CRX của tiện ích mở rộng xbmc playlist adder
Tải xuống các tệp mở rộng xbmc playlist adder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This plugin allows add items to kodi playlist from fs.to, ex.ua, vkontakte.ru
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | xbmc playlist adder |
ID | nohgbcignghkdplaannhnlpafhbimcoe |
URL Chính Thức | https://chromewebstore.google.com/detail/xbmc-playlist-adder/nohgbcignghkdplaannhnlpafhbimcoe |
Mô tả | The extension to add urls to xbmc |
Kích Thước Tệp | 3.37 MB |
Số Lần Cài Đặt | 47 |
Phiên Bản Hiện Tại | 1.0.8 |
Cập Nhật Lần Cuối | 2016-07-11 |
Ngày Phát Hành | 2016-07-11 |
Nhà Phát Triển | shaddyx |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |