Hijacker

hijack value by ast hook

Wat is Hijacker?

Hijacker is een Chrome-extensie ontwikkeld door krapnik, en de belangrijkste functie is "hijack value by ast hook".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Hijacker

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

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

Basisinformatie over de Extensie

Naam Hijacker Hijacker
ID fhajbfolkalcaagcgamlbkalippaignj
Officiële URL https://chromewebstore.google.com/detail/hijacker/fhajbfolkalcaagcgamlbkalippaignj
Beschrijving hijack value by ast hook
Bestandsgrootte 292 KB
Aantal Installaties 220
Huidige Versie 1.14
Laatst Bijgewerkt 2022-07-11
Publicatiedatum 2022-07-11
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar krapnik
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/krapnikkk/hijacker
URL van de Privacybeleid Pagina http://krapnik.cn/joy/privacyPolicy.html
Ondersteunde Talen 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"
        }
    ]
}