HOTSLogs Extension
Small extension on www.hotslogs.com
What is HOTSLogs Extension?
HOTSLogs Extension is a Chrome extension developed by ahri, and its main feature is "Small extension on www.hotslogs.com".
Extension Screenshots
Download HOTSLogs Extension Extension CRX File
Download HOTSLogs Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | HOTSLogs Extension |
ID | ncmfokmnclmedcfbbmaloocmncmopphf |
Official URL | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
Description | Small extension on www.hotslogs.com |
File Size | 18.64 KB |
Installation Count | 169 |
Current Version | 0.3.11 |
Last Updated | 2017-04-09 |
Publish Date | 2017-04-09 |
Rating | 4.88/5 Total 8 Ratings |
Developer | ahri |
Payment Type | free |
Supported Languages | 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" ] } ] } |