Browser Remote Control

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

Wat is Browser Remote Control?

Browser Remote Control is een Chrome-extensie ontwikkeld door pezoa.felipe, en de belangrijkste functie is "This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Browser Remote Control

Download Browser Remote Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Browser Remote Control Browser Remote Control
ID joddnhbmigdhcfihgfhccnpbfapdimlb
Officiële URL https://chrome.google.com/webstore/detail/browser-remote-control/joddnhbmigdhcfihgfhccnpbfapdimlb
Beschrijving This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).
Bestandsgrootte 366 KB
Aantal Installaties 195
Huidige Versie 0.1.0
Laatst Bijgewerkt 2016-12-24
Publicatiedatum 2016-12-24
Beoordeling 4.33/5 Totaal 3 Beoordelingen
Ontwikkelaar pezoa.felipe
Betalingswijze free
Ondersteunde Talen 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"
    ]
}