Cloud disk player helper

Video player helper for cloud disk providers

Что такое Cloud disk player helper?

Cloud disk player helper - это расширение Chrome, разработанное Uranus Zhou, и его основная функция - "Video player helper for cloud disk providers".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Cloud disk player helper

Скачайте файлы расширений Cloud disk player helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Video player helper extension for cloud disk providers, currently support 360Cloud (yunpan.cn), BaiduCloud should be added later.

With this extension, you can playback non-mp4(webm) video files (like avi, mkv, rm, rmvb files) online in 360Cloud web pages, online playback relies on "VXG Media Player" Chrome app, if you don't want to install "VXG Media Player" Chrome app, you can also use basic functions like copy transcoded/original video links to other media player.

If you find a bug, please create new issue on GitHub issue page.

Change logs:
2017-01-06 0.6
* Update VXG Media Player API to 1.8.23 version
* Bug fix for closed 360 cloud disk player
2016-07-28 0.5
* Fix sometimes play video page redirect to 360 cloud disk App download bug
* Enable HTML5 player for webm and ogv video on 360 cloud disk
2016-07-27 0.4
* Fix sometimes play mkv like video files redirect to 360 cloud disk App page bug
* Update VXG Media Player API to 1.8.4 version
2016-05-18 0.3
* Fix video play window is not correctly opened bug on 360 cloud disk HTTPS page
* Tip user to redirect to HTTP video play page if needed
* Fix VXG video player window size bug after click play more than one time
* Update VXG Media Player css/js/pnacl files to 1.7.45 version
2016-05-08 0.2
* Fix 360Cloud may redirect to App download page if m3u8 video URL doesn't exist
* Update VXG Media Player css/js/pnacl files to 1.7.44 version
2016-04-07 0.1
* Initial version                    

Основная информация о расширении

Название Cloud disk player helper Cloud disk player helper
ID klomjfcgakppceibbbgkbdklmhiiidkl
Официальный URL https://chromewebstore.google.com/detail/cloud-disk-player-helper/klomjfcgakppceibbbgkbdklmhiiidkl
Описание Video player helper for cloud disk providers
Размер файла 1.42 MB
Количество установок 2,096
Текущая Версия 0.6
Последнее Обновление 2017-01-06
Дата публикации 2017-01-06
Рейтинг 3.69/5 Всего 13 оценок
Разработчик Uranus Zhou
Тип оплаты free
Официальный сайт расширения https://zohead.com/
URL страницы помощи https://github.com/zohead/cloud-disk-player-helper/issues
Поддерживаемые языки en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Uranus Zhou",
    "default_locale": "en",
    "description": "__MSG_clouddiskplayer_description__",
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png"
    },
    "manifest_version": 2,
    "name": "__MSG_clouddiskplayer_name__",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.yunpan.360.cn\/my*",
                "https:\/\/*.yunpan.360.cn\/my*"
            ],
            "js": [
                "js\/jquery-2.1.3.min.js",
                "js\/360-open-player.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*.yunpan.360.cn\/videoPlayer\/*",
                "https:\/\/*.yunpan.360.cn\/videoPlayer\/*"
            ],
            "css": [
                "css\/vxgplayer-1.8.23.min.css"
            ],
            "js": [
                "js\/jquery-2.1.3.min.js",
                "js\/vxgplayer-1.8.23.min.js",
                "js\/360-player.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "icons\/48.png",
        "pnacl\/Release\/media_player.nmf",
        "pnacl\/Release\/media_player.pexe"
    ],
    "permissions": [],
    "version": "0.6"
}