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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |