Stream Defense Controller
A controller for the popular Twitch.tv stream defense game.
What is Stream Defense Controller?
Stream Defense Controller is a Chrome extension developed by Mariusz Dabrowski, and its main feature is "A controller for the popular Twitch.tv stream defense game.".
Extension Screenshots
Download Stream Defense Controller Extension CRX File
Download Stream Defense Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Stream Defense Controller |
ID | kdnmeicbpnbfjhoeofjpglbfcmhepdga |
Official URL | https://chromewebstore.google.com/detail/stream-defense-controller/kdnmeicbpnbfjhoeofjpglbfcmhepdga |
Description | A controller for the popular Twitch.tv stream defense game. |
File Size | 40.52 KB |
Installation Count | 26 |
Current Version | 2.1.2 |
Last Updated | 2019-03-20 |
Publish Date | 2019-03-20 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Mariusz Dabrowski |
Payment Type | free |
Extension Website | https://github.com/MariuszDabrowski/stream-defense-controller |
Help Page URL | https://github.com/MariuszDabrowski/stream-defense-controller |
Supported Languages | 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" } } |