Browser Remote Control
This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).
What is Browser Remote Control?
Browser Remote Control is a Chrome extension developed by pezoa.felipe, and its main feature is "This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).".
Extension Screenshots
Download Browser Remote Control Extension CRX File
Download Browser Remote Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | joddnhbmigdhcfihgfhccnpbfapdimlb |
Official URL | https://chrome.google.com/webstore/detail/browser-remote-control/joddnhbmigdhcfihgfhccnpbfapdimlb |
Description | This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv). |
File Size | 366 KB |
Installation Count | 195 |
Current Version | 0.1.0 |
Last Updated | 2016-12-24 |
Publish Date | 2016-12-24 |
Rating | 4.33/5 Total 3 Ratings |
Developer | pezoa.felipe |
Payment Type | free |
Supported Languages | 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" ] } |