Dota Scryer
Track Dota 2 match data live in Twitch
Dota Scryerคืออะไร?
Dota Scryer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.dota-scryer.com และคุณลักษณะหลักของมันคือ "Track Dota 2 match data live in Twitch"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dota Scryer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| อีเมล | [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
}
} | |