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 |
| Eメール | [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
} | |