Play on XBMC

Play video links directly on XBMC. Support for Youtube, Vimeo and direct links

ما هو Play on XBMC؟

Play on XBMC هو إضافة Chrome تم تطويرها بواسطة Powdor، والميزة الرئيسية لها هي "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Play on XBMC

قم بتنزيل ملفات الامتداد Play on XBMC بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Simple extension to allow playback of any video link through XBMC. It now supports youtube and vimeo through the standard plugins, other links are played directly. Use context menu of links to access functions                    

معلومات أساسية عن التمديد

الاسم Play on XBMC Play on XBMC
ID ikckpdakfinonggpbmnaopjhkhalmohm
عنوان URL الرسمي https://chromewebstore.google.com/detail/play-on-xbmc/ikckpdakfinonggpbmnaopjhkhalmohm
الوصف Play video links directly on XBMC. Support for Youtube, Vimeo and direct links
حجم الملف 123 KB
عدد التثبيتات 246
النسخة الحالية 1.0
آخر تحديث 2013-12-01
تاريخ النشر 2013-12-01
تقييم 2.00/5 مجموع تقييمات 5
المطور Powdor
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Play on XBMC",
    "version": "1.0",
    "description": "Play video links directly on XBMC. Support for Youtube, Vimeo and direct links",
    "author": "Martijn Tieland ([email protected])",
    "icons": {
        "48": "xbmc48.png",
        "128": "xbmc128.png"
    },
    "background": {
        "scripts": [
            "jquery-2.0.3.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.0.3.min.js"
            ]
        }
    ],
    "options_page": "options_page.html",
    "permissions": [
        "contextMenus",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ]
}