Browser Remote Control

This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).

Что такое Browser Remote Control?

Browser Remote Control - это расширение Chrome, разработанное pezoa.felipe, и его основная функция - "This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).".

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

screenshot
screenshot

Скачать файл CRX расширения Browser Remote Control

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

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

                        Con esta aplicación podrás controlar los reproductores de video de ciertas páginas. Por ahora solo se encuentran soportadas las páginas:

App Móvil Android: https://play.google.com/store/apps/details?id=cl.uc.fipezoa.chromeremotecontrol

- animeflv.net
- pelispedia.tv

Con esta aplicación podrás:

- pausar
- reproducir
- cambiar de capítulo
- cambiar a pantalla completa (tiene detalles para volver a la pantalla minimizada).

Para usarla debes descargar la extensión, identificarte y al hacerlo recibirás un número. Ingresa este número en la app para conectarte a tu explroador.

Una vez conectado es simplemente acostarse y ver una buena serie sin volver a pararte a cambiar el capítulo.                    

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

Название Browser Remote Control Browser Remote Control
ID joddnhbmigdhcfihgfhccnpbfapdimlb
Официальный URL https://chrome.google.com/webstore/detail/browser-remote-control/joddnhbmigdhcfihgfhccnpbfapdimlb
Описание This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).
Размер файла 366 KB
Количество установок 195
Текущая Версия 0.1.0
Последнее Обновление 2016-12-24
Дата публикации 2016-12-24
Рейтинг 4.33/5 Всего 3 оценок
Разработчик pezoa.felipe
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browser Remote Control",
    "description": "This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "jwplayer\/jwplayer.js",
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-3.1.1.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ]
}