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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |