JSHookTool
v_jstools js hook工具
什么是JSHookTool?
JSHookTool是由fangtiansheng开发的Chrome扩展程序,该扩展的主要功能是“v_jstools js hook工具”。
扩展截图
下载JSHookTool扩展crx文件
下载JSHookTool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
模仿着写一个开源的 chrome 插件,用来快速调试前端 js 代码。 扩展基本信息
| 名称 | |
| ID | clfpeebohelnalneibgcfhmpcbcgolin |
| 官方URL | https://chromewebstore.google.com/detail/jshooktool/clfpeebohelnalneibgcfhmpcbcgolin |
| 简介 | v_jstools js hook工具 |
| 文件大小 | 526 KB |
| 安装次数 | 1,117 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2021-12-20 |
| 上架时间 | 2021-12-19 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | fangtiansheng |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/valuespider/v_jstools |
| 帮助页面URL | https://github.com/valuespider/v_jstools |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JSHookTool",
"version": "0.0.3",
"description": "v_jstools js hook\u5de5\u5177",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"storage",
"unlimitedStorage",
"debugger",
"storage",
"contextMenus"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"file:\/\/\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"inject.js"
],
"all_frames": true
}
],
"options_page": "options.html",
"options_ui": {
"chrome_style": false,
"open_in_tab": true,
"page": "options.html"
},
"manifest_version": 2
} | |