WebMon
Monitor variables exported from JavaScript
什么是WebMon?
WebMon是由Christian Plesner Hansen开发的Chrome扩展程序,该扩展的主要功能是“Monitor variables exported from JavaScript”。
扩展截图
下载WebMon扩展crx文件
下载WebMon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
WebMon provides an easy way to monitor running web apps. JavaScript code can export information using the webmon.js library and this chrome extension will read the exported values and display them in a popup.
Get the webmon library from http://github.com/plesner/webmon. 扩展基本信息
| 名称 | |
| ID | edecgbjfjpedgppbmhedaoiffklffnal |
| 官方URL | https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal |
| 简介 | Monitor variables exported from JavaScript |
| 文件大小 | 15.29 KB |
| 安装次数 | 32 |
| 当前版本 | 0.1 |
| 更新时间 | 2012-07-28 |
| 上架时间 | 2012-07-28 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | Christian Plesner Hansen |
| 付费类型 | free |
| 扩展官网 | http://github.com/plesner/webmon |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "WebMon",
"version": "0.1",
"description": "Monitor variables exported from JavaScript",
"background": {
"scripts": [
"background.js"
]
},
"page_action": {
"default_icon": "icon-19.png"
},
"content_scripts": [
{
"matches": [
"file:\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"manifest_version": 2
} | |