TwitchPlaysN64 Controller

An interactive controller to use with twitch.tv/twitchplaysn64 -- map controller input to your keyboard.

TwitchPlaysN64 Controllerคืออะไร?

TwitchPlaysN64 Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TwitchPlaysN64 และคุณลักษณะหลักของมันคือ "An interactive controller to use with twitch.tv/twitchplaysn64 -- map controller input to your keyboard."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TwitchPlaysN64 Controller

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

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

                        This extension is for use with the TwitchPlaysN64 live stream at www.twitch.tv/twitchplaysn64

When you navigate to www.twitch.tv/twitchplaysn64 you'll see our purple controller icon in the address bar, click it to get started with the in browser controller!

You can set key-bindings, game-pad bindings, or click the buttons on the controller with your mouse to send TwitchPlaysN64 commands directly to Twitch's chat box.

You can also choose to filter out all of the command spam from the chat box, so you can actually have a conversation with us and fellow players!

If you're on Twitch's new chat system, you'll get a new icon next to the chat button. Here you can bring up a floating mini-controller to click on, or filter chat right from the icon.

Key-bindings will only work if you aren't focusing (cursor in) the chat box, that way you can type normally.


See you there :-)                    

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

ชื่อ TwitchPlaysN64 Controller TwitchPlaysN64 Controller
ID pnocfagmbalhppcfcgnpdoimdkgibjmi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitchplaysn64-controller/pnocfagmbalhppcfcgnpdoimdkgibjmi
คำอธิบาย An interactive controller to use with twitch.tv/twitchplaysn64 -- map controller input to your keyboard.
ขนาดไฟล์ 132 KB
จำนวนการติดตั้ง 140
เวอร์ชันปัจจุบัน 0.2.12
อัปเดตครั้งล่าสุด 2014-03-06
วันที่เผยแพร่ 2014-03-06
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา TwitchPlaysN64
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.twitch.tv/TwitchPlaysN64
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TwitchPlaysN64 Controller",
    "description": "An interactive controller to use with twitch.tv\/twitchplaysn64 -- map controller input to your keyboard.",
    "version": "0.2.12",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "icons\/18x18.png",
        "icons\/miniController.png"
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/19x19.png",
            "38": "icons\/38x38.png"
        },
        "default_title": "TwitchPlaysN64 Controller",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitch.tv\/",
                "http:\/\/www.twitch.tv\/*",
                "https:\/\/www.twitch.tv\/",
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ]
}