Stream Defense Controller
A controller for the popular Twitch.tv stream defense game.
Stream Defense Controllerคืออะไร?
Stream Defense Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mariusz Dabrowski และคุณลักษณะหลักของมันคือ "A controller for the popular Twitch.tv stream defense game."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stream Defense Controller
ดาวน์โหลดไฟล์ส่วนขยาย Stream Defense Controller ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a video overlay for the popular Twitch.tv stream defense game: https://www.twitch.tv/archonthewizard It creates an overlay over the video to allow you to play without typing commands.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Stream Defense Controller |
ID | kdnmeicbpnbfjhoeofjpglbfcmhepdga |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/stream-defense-controller/kdnmeicbpnbfjhoeofjpglbfcmhepdga |
คำอธิบาย | A controller for the popular Twitch.tv stream defense game. |
ขนาดไฟล์ | 40.52 KB |
จำนวนการติดตั้ง | 26 |
เวอร์ชันปัจจุบัน | 2.1.2 |
อัปเดตครั้งล่าสุด | 2019-03-20 |
วันที่เผยแพร่ | 2019-03-20 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Mariusz Dabrowski |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/MariuszDabrowski/stream-defense-controller |
URL หน้าช่วยเหลือ | https://github.com/MariuszDabrowski/stream-defense-controller |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stream Defense Controller", "description": "A controller for the popular Twitch.tv stream defense game.", "version": "2.1.2", "author": "Mariusz Dabrowski", "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*", "http:\/\/*.twitch.tv\/*" ], "run_at": "document_end", "js": [ "js\/overlay.bundle.js" ], "css": [ "css\/overlay.css", "css\/tabs.css", "css\/video.css", "css\/factionsSelect.css", "css\/classSelector.css", "css\/cost.css", "css\/mapSelector.css", "css\/toggleVisibility.css", "css\/customActions.css", "css\/powerButtons.css", "css\/targetPriority.css", "css\/votingOptions.css" ] } ], "browser_action": { "default_title": "Stream Defense Controller", "default_popup": "popup.html", "default_icon": { "128": "images\/128x128.png" } }, "permissions": [ "tabs", "storage", "management" ], "icons": { "128": "images\/app-icon-128x128.png" } } |