Gamepad for Plex Web

Control Plex.tv from the comfort of your couch with this gamepad extension!

Gamepad for Plex Webคืออะไร?

Gamepad for Plex Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danchowdhury และคุณลักษณะหลักของมันคือ "Control Plex.tv from the comfort of your couch with this gamepad extension!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gamepad for Plex Web

ดาวน์โหลดไฟล์ส่วนขยาย Gamepad for Plex Web ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds basic gamepad support to the Plex.tv Web interface!

FEATURES OF CURRENT RELEASE:
* Support for various popular controllers (only 360 controller has been tested)
* Scroll through episodes when in single episode view
* Play, pause, stop, rewind and go full screen with your gamepad (See screenshot for controls).

Note: If the controller doesn't work at first, try Refreshing your browser or pressing the A/X button on your controller.

This extension doesn't support general browsing of the Plex interface using a controller.  This might happen in future, but the main purpose is so that you can browse to your media, blow it up on screen then sit back!  You can use something like Plex Home Theater if you want complete remote control support.

PERMISSIONS: Inject gamepad support into any web page that is found to be Plex Web.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gamepad for Plex Web Gamepad for Plex Web
ID haoeganpancihdffhohfeeeejpbahlld
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gamepad-for-plex-web/haoeganpancihdffhohfeeeejpbahlld
คำอธิบาย Control Plex.tv from the comfort of your couch with this gamepad extension!
ขนาดไฟล์ 41.87 KB
จำนวนการติดตั้ง 514
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2016-06-09
วันที่เผยแพร่ 2016-06-09
คะแนน 3.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา danchowdhury
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gamepad for Plex Web",
    "author": "Dan Chowdhury",
    "version": "1.3",
    "description": "Control Plex.tv from the comfort of your couch with this gamepad extension!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "fullscreen.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "lib\/jquery.min.js",
        "lib\/gamepad.min.js",
        "plex_injection.js"
    ],
    "permissions": [
        "activeTab"
    ]
}