Stream Defense Controller
A controller for the popular Twitch.tv stream defense game.
什麼是Stream Defense Controller?
Stream Defense Controller是由Mariusz Dabrowski開發的Chrome擴展程式,該擴展的主要功能是“A controller for the popular Twitch.tv stream defense game.”。
擴展截圖
下載Stream Defense Controller擴展crx文件
下載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 |
官方網址 | 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" } } |