Stream Defense Controller
A controller for the popular Twitch.tv stream defense game.
Stream Defense Controller là gì?
Stream Defense Controller là một tiện ích mở rộng Chrome được phát triển bởi Mariusz Dabrowski, và tính năng chính của nó là "A controller for the popular Twitch.tv stream defense game.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Stream Defense Controller
Tải xuống các tệp mở rộng Stream Defense Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Stream Defense Controller |
ID | kdnmeicbpnbfjhoeofjpglbfcmhepdga |
URL Chính Thức | https://chromewebstore.google.com/detail/stream-defense-controller/kdnmeicbpnbfjhoeofjpglbfcmhepdga |
Mô tả | A controller for the popular Twitch.tv stream defense game. |
Kích Thước Tệp | 40.52 KB |
Số Lần Cài Đặt | 26 |
Phiên Bản Hiện Tại | 2.1.2 |
Cập Nhật Lần Cuối | 2019-03-20 |
Ngày Phát Hành | 2019-03-20 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Mariusz Dabrowski |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/MariuszDabrowski/stream-defense-controller |
URL Trang Trợ Giúp | https://github.com/MariuszDabrowski/stream-defense-controller |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |