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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |