HornTracker Helper
Adds an icon to your address bar that allows you to go straight to the HornTracker data viewer with relevant parameters.
什么是HornTracker Helper?
HornTracker Helper是由https://sites.google.com/site/haoala开发的Chrome扩展程序,该扩展的主要功能是“Adds an icon to your address bar that allows you to go straight to the HornTracker data viewer with relevant parameters.”。
扩展截图
下载HornTracker Helper扩展crx文件
下载HornTracker Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
For MouseHunt players: Want to know the mice population for your location? Want to know how your current setup should be doing?
1.1.1:
- Inclusion of newest traps and charms 扩展基本信息
| 名称 | |
| ID | nahjpfllomdonendichbfnmiklhhgbmd |
| 官方URL | https://chromewebstore.google.com/detail/horntracker-helper/nahjpfllomdonendichbfnmiklhhgbmd |
| 简介 | Adds an icon to your address bar that allows you to go straight to the HornTracker data viewer with relevant parameters. |
| 文件大小 | 17.46 KB |
| 安装次数 | 88 |
| 当前版本 | 1.1.1 |
| 更新时间 | 2013-04-26 |
| 上架时间 | 2013-04-25 |
| 评分 | 4.50/5 共6次评分 |
| 开发者 | https://sites.google.com/site/haoala |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | http://www.mousehuntgame.com/forum/showthread.php?42786-MouseHunt-Horn-Timer-for-Chrome |
| 支持的语言 | en |
| manifest.json | |
{
"page_action": {
"default_icon": "percentage.png"
},
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Adds an icon to your address bar that allows you to go straight to the HornTracker data viewer with relevant parameters.",
"background": {
"scripts": [
"background.js"
]
},
"name": "HornTracker Helper",
"permissions": [
"tabs",
"http:\/\/www.mousehuntgame.com\/*",
"http:\/\/www.mousehuntgame.com\/",
"https:\/\/www.mousehuntgame.com\/",
"https:\/\/www.mousehuntgame.com\/*"
],
"options_page": "options.html",
"icons": {
"128": "percentage.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.mousehuntgame.com\/*",
"http:\/\/www.mousehuntgame.com\/",
"https:\/\/www.mousehuntgame.com\/",
"https:\/\/www.mousehuntgame.com\/*"
],
"js": [
"hthelper.js"
]
}
],
"manifest_version": 2,
"version": "1.1.1"
} | |