JSHookTool

v_jstools js hook工具

What is JSHookTool?

JSHookTool is a Chrome extension developed by fangtiansheng, and its main feature is "v_jstools js hook工具".

Extension Screenshots

screenshot

Download JSHookTool Extension CRX File

Download JSHookTool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        模仿着写一个开源的 chrome 插件,用来快速调试前端 js 代码。                    

Extension Basic Information

Name JSHookTool JSHookTool
ID clfpeebohelnalneibgcfhmpcbcgolin
Official URL https://chromewebstore.google.com/detail/jshooktool/clfpeebohelnalneibgcfhmpcbcgolin
Description v_jstools js hook工具
File Size 526 KB
Installation Count 1,117
Current Version 0.0.3
Last Updated 2021-12-20
Publish Date 2021-12-19
Rating 5.00/5 Total 2 Ratings
Developer fangtiansheng
Email [email protected]
Payment Type free
Extension Website https://github.com/valuespider/v_jstools
Help Page URL https://github.com/valuespider/v_jstools
Supported Languages 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
}