Hijacker

hijack value by ast hook

Cos'è Hijacker?

Hijacker è un'estensione di Chrome sviluppata da krapnik, e la sua funzione principale è "hijack value by ast hook".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hijacker

Scarica i file di estensione Hijacker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Hijacker Hijacker
ID fhajbfolkalcaagcgamlbkalippaignj
URL Ufficiale https://chromewebstore.google.com/detail/hijacker/fhajbfolkalcaagcgamlbkalippaignj
Descrizione hijack value by ast hook
Dimensione del File 292 KB
Conteggio Installazioni 220
Versione Corrente 1.14
Ultimo Aggiornamento 2022-07-11
Data di Pubblicazione 2022-07-11
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore krapnik
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/krapnikkk/hijacker
URL della Pagina della Politica sulla Privacy http://krapnik.cn/joy/privacyPolicy.html
Lingue Supportate 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"
        }
    ]
}