Hijacker
hijack value by ast hook
Hijackerとは何ですか?
Hijackerはkrapnikによって開発されたChromeの拡張機能で、その主な機能は「hijack value by ast hook」です。
拡張機能のスクリーンショット
Hijacker拡張機能のCRXファイルをダウンロード
Hijacker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
toy project~
类桌面端【金山游侠】/移动端【八门神器】应用~
根据ast对js代码进行注入劫持并达到替换数据的目的 拡張機能の基本情報
| 名前 | |
| ID | fhajbfolkalcaagcgamlbkalippaignj |
| 公式URL | https://chromewebstore.google.com/detail/hijacker/fhajbfolkalcaagcgamlbkalippaignj |
| 説明 | hijack value by ast hook |
| ファイルサイズ | 292 KB |
| インストール数 | 220 |
| 現在のバージョン | 1.14 |
| 最終更新日 | 2022-07-11 |
| 公開日 | 2022-07-11 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | krapnik |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/krapnikkk/hijacker |
| プライバシーポリシーページのURL | http://krapnik.cn/joy/privacyPolicy.html |
| 対応言語 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.14",
"name": "Hijacker",
"manifest_version": 2,
"author": "@krapnikkk",
"description": "hijack value by ast hook",
"permissions": [
"webRequest",
"webRequestBlocking",
"*:\/\/*\/*"
],
"page_action": {
"default_icon": {
"19": ".\/icon\/19.png",
"38": ".\/icon\/38.png"
},
"default_title": "hijack with eshook"
},
"icons": {
"32": ".\/icon\/32.png",
"64": ".\/icon\/64.png",
"128": ".\/icon\/128.png"
},
"background": {
"scripts": [
"dist\/background.bundle.js"
],
"persistent": true
},
"web_accessible_resources": [
"hook.js"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_start"
}
]
} | |