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"
    ]
}