HOTSLogs Extension
Small extension on www.hotslogs.com
HOTSLogs Extensionคืออะไร?
HOTSLogs Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ahri และคุณลักษณะหลักของมันคือ "Small extension on www.hotslogs.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HOTSLogs Extension
ดาวน์โหลดไฟล์ส่วนขยาย HOTSLogs Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension of www.hotslogs.com Currently just adds wins/losses into "Games Played" cells, for convenience. Optionally colors hero rows in tables by hero subrole - if that setting is set into options.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HOTSLogs Extension |
ID | ncmfokmnclmedcfbbmaloocmncmopphf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
คำอธิบาย | Small extension on www.hotslogs.com |
ขนาดไฟล์ | 18.64 KB |
จำนวนการติดตั้ง | 169 |
เวอร์ชันปัจจุบัน | 0.3.11 |
อัปเดตครั้งล่าสุด | 2017-04-09 |
วันที่เผยแพร่ | 2017-04-09 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | ahri |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HOTSLogs Extension", "manifest_version": 2, "version": "0.3.11", "author": "ahri", "description": "Small extension on www.hotslogs.com", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*" ], "js": [ "common.js", "hero_roles.js", "contentscript.js", "favorite_heroes.js", "win_rate_stats.js" ] } ] } |