HOTSLogs Extension

Small extension on www.hotslogs.com

什么是HOTSLogs Extension?

HOTSLogs Extension是由ahri开发的Chrome扩展程序,该扩展的主要功能是“Small extension on www.hotslogs.com”。

扩展截图

screenshot
screenshot

下载HOTSLogs Extension扩展crx文件

下载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 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"
            ]
        }
    ]
}