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                    

扩展基本信息

名称 xbmc playlist adder 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"
            ]
        }
    ]
}