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
官方網址 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"
            ]
        }
    ]
}