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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}