Dota Tooltips

Popup text for Dota 2 related keywords.

Dota Tooltips란 무엇입니까?

Dota Tooltips은(는) dotatooltips에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Popup text for Dota 2 related keywords."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Dota Tooltips 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Modifies Dota related keywords to allow mouseover tooltips on every page you visit. A helpful tool for newcomers to the game and veterans alike. 

Extension is not affiliated with Valve or the Dota 2 brand. All assets drawn from the Dota 2 website. For this reason, users are subject to Valve's privacy policy which can be found online here:
http://store.steampowered.com/privacy_agreement/                    

확장 프로그램 기본 정보

이름 Dota Tooltips Dota Tooltips
ID leapddieoamfamhknejpmebbohanfini
공식 URL https://chromewebstore.google.com/detail/dota-tooltips/leapddieoamfamhknejpmebbohanfini
설명 Popup text for Dota 2 related keywords.
파일 크기 76.96 KB
설치 횟수 59
현재 버전 0.0.1.8
최근 업데이트 2016-10-15
출시 날짜 2016-10-15
평점 5.00/5 총 1 개의 평점
개발자 dotatooltips
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dota Tooltips",
    "version": "0.0.1.8",
    "description": "Popup text for Dota 2 related keywords.",
    "author": "github.com\/dgkf",
    "icons": {
        "128": "icons\/dotatooltips_icon_128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/cdn.dota2.com\/",
        "https:\/\/www.dota2.com\/*"
    ],
    "background": {
        "scripts": [
            "third_party_resources\/js\/jquery-3.1.0.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/dotatooltips_icon_128.png",
        "default_title": "Dota Tooltips",
        "default_popup": "html\/options.html"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "html\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "third_party_resources\/js\/jquery-3.1.0.min.js",
                "js\/add_tooltips.js"
            ],
            "css": [
                "css\/style_custom.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "html\/*.html",
        "json\/*.json"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}