Dota Scryer
Track Dota 2 match data live in Twitch
Dota Scryer란 무엇입니까?
Dota Scryer은(는) https://www.dota-scryer.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track Dota 2 match data live in Twitch"입니다.
확장 프로그램 스크린샷
Dota Scryer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: - Select a match from a list of live match data - Browse the players' heroes, skill builds, items, K/D/A and more in the scoreboard - Compare the economy of each team in the networth and experience tabs Dota Scryer works with both vanilla chat and BTTV. Update History: Version 0.0.7 - Adds colorblind option; right-click chrome shortcut or go to your chrome's extension page (chrome://extensions/) to access extension options - Extension now remembers your match when hidden, and will reopen to the same match rather than returning to matchlist - Minor style and copy fixes
확장 프로그램 기본 정보
이름 | Dota Scryer |
ID | ikfgldhflogacnhppcliagnbmjmlljfh |
공식 URL | https://chromewebstore.google.com/detail/dota-scryer/ikfgldhflogacnhppcliagnbmjmlljfh |
설명 | Track Dota 2 match data live in Twitch |
파일 크기 | 398 KB |
설치 횟수 | 13 |
현재 버전 | 0.0.7 |
최근 업데이트 | 2016-12-13 |
출시 날짜 | 2016-12-12 |
평점 | 4.88/5 총 8 개의 평점 |
개발자 | https://www.dota-scryer.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.dota-scryer.com |
도움말 페이지 URL | https://www.dota-scryer.com/about |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dota Scryer", "version": "0.0.7", "manifest_version": 2, "description": "Track Dota 2 match data live in Twitch", "short_name": "dota-scryer", "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "dotaChromeEx.js", "inject.js" ], "css": [ "styles.css" ] } ], "web_accessible_resources": [ "styles.css", "content.js", "assets\/*" ], "permissions": [ "https:\/\/*.twitch.tv\/*", "storage" ], "browser_action": { "default_icon": { "16": "assets\/favicon-16x16.png", "24": "assets\/favicon-24x24.png", "32": "assets\/favicon-32x32.png" } }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "options_ui": { "page": "options.html", "chrome_style": true } } |