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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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