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はpezoa.felipeによって開発されたChromeの拡張機能で、その主な機能は「This extension lets you control videoplayer from certain webpages (for now just animeflv.net and pelispedia.tv).」です。
拡張機能のスクリーンショット
Browser Remote Control拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |