Dota Tooltips
Popup text for Dota 2 related keywords.
什麼是Dota Tooltips?
Dota Tooltips是由dotatooltips開發的Chrome擴展程式,該擴展的主要功能是“Popup text for Dota 2 related keywords.”。
擴展截圖
下載Dota Tooltips擴展crx文件
下載Dota Tooltips擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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/                     擴展基本資訊
| 名稱 |   |  
| ID | leapddieoamfamhknejpmebbohanfini | 
| 官方網址 | 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]"
        }
    }
}  |  |