xbmc playlist adder

The extension to add urls to xbmc

xbmc playlist adderคืออะไร?

xbmc playlist adder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shaddyx และคุณลักษณะหลักของมันคือ "The extension to add urls to xbmc"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xbmc playlist adder

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}