JSHookTool
v_jstools js hook工具
Wat is JSHookTool?
JSHookTool is een Chrome-extensie ontwikkeld door fangtiansheng, en de belangrijkste functie is "v_jstools js hook工具".
Extensie Screenshots
Download het CRX-bestand van de extensie JSHookTool
Download JSHookTool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
模仿着写一个开源的 chrome 插件,用来快速调试前端 js 代码。
Basisinformatie over de Extensie
Naam | JSHookTool |
ID | clfpeebohelnalneibgcfhmpcbcgolin |
Officiële URL | https://chromewebstore.google.com/detail/jshooktool/clfpeebohelnalneibgcfhmpcbcgolin |
Beschrijving | v_jstools js hook工具 |
Bestandsgrootte | 526 KB |
Aantal Installaties | 1,117 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2021-12-20 |
Publicatiedatum | 2021-12-19 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | fangtiansheng |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/valuespider/v_jstools |
Help Pagina-URL | https://github.com/valuespider/v_jstools |
Ondersteunde Talen | 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 } |