Hijacker

hijack value by ast hook

What is Hijacker?

Hijacker is a Chrome extension developed by krapnik, and its main feature is "hijack value by ast hook".

Extension Screenshots

screenshot

Download Hijacker Extension CRX File

Download Hijacker 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

                        toy project~
类桌面端【金山游侠】/移动端【八门神器】应用~
根据ast对js代码进行注入劫持并达到替换数据的目的                    

Extension Basic Information

Name Hijacker Hijacker
ID fhajbfolkalcaagcgamlbkalippaignj
Official URL https://chromewebstore.google.com/detail/hijacker/fhajbfolkalcaagcgamlbkalippaignj
Description hijack value by ast hook
File Size 292 KB
Installation Count 220
Current Version 1.14
Last Updated 2022-07-11
Publish Date 2022-07-11
Rating 5.00/5 Total 4 Ratings
Developer krapnik
Email [email protected]
Payment Type free
Extension Website https://github.com/krapnikkk/hijacker
Privacy Policy Page URL http://krapnik.cn/joy/privacyPolicy.html
Supported Languages 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"
        }
    ]
}