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文件
下载Dota Scryer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 } } |