HOTSLogs Extension
Small extension on www.hotslogs.com
HOTSLogs Extension là gì?
HOTSLogs Extension là một tiện ích mở rộng Chrome được phát triển bởi ahri, và tính năng chính của nó là "Small extension on www.hotslogs.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng HOTSLogs Extension
Tải xuống các tệp mở rộng HOTSLogs Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | HOTSLogs Extension |
ID | ncmfokmnclmedcfbbmaloocmncmopphf |
URL Chính Thức | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
Mô tả | Small extension on www.hotslogs.com |
Kích Thước Tệp | 18.64 KB |
Số Lần Cài Đặt | 169 |
Phiên Bản Hiện Tại | 0.3.11 |
Cập Nhật Lần Cuối | 2017-04-09 |
Ngày Phát Hành | 2017-04-09 |
Đánh Giá | 4.88/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | ahri |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |