Dota Tooltips
Popup text for Dota 2 related keywords.
Dota Tooltips là gì?
Dota Tooltips là một tiện ích mở rộng Chrome được phát triển bởi dotatooltips, và tính năng chính của nó là "Popup text for Dota 2 related keywords.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dota Tooltips
Tải xuống các tệp mở rộng Dota Tooltips dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Dota Tooltips |
ID | leapddieoamfamhknejpmebbohanfini |
URL Chính Thức | https://chromewebstore.google.com/detail/dota-tooltips/leapddieoamfamhknejpmebbohanfini |
Mô tả | Popup text for Dota 2 related keywords. |
Kích Thước Tệp | 76.96 KB |
Số Lần Cài Đặt | 59 |
Phiên Bản Hiện Tại | 0.0.1.8 |
Cập Nhật Lần Cuối | 2016-10-15 |
Ngày Phát Hành | 2016-10-15 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | dotatooltips |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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]" } } } |