Arex Chrome Extension

Provides more capabilities for Arex

Cos'è Arex Chrome Extension?

Arex Chrome Extension è un'estensione di Chrome sviluppata da wr.zhang25, e la sua funzione principale è "Provides more capabilities for Arex".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Arex Chrome Extension

Scarica i file di estensione Arex Chrome Extension 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

                        此插件可突破浏览器跨域限制,原理是通过postMessage把需要请求的函数交给插件的background处理。                    

Informazioni di Base sull'Estensione

Nome Arex Chrome Extension Arex Chrome Extension
ID jmmficadjneeekafmnheppeoehlgjdjj
URL Ufficiale https://chromewebstore.google.com/detail/arex-chrome-extension/jmmficadjneeekafmnheppeoehlgjdjj
Descrizione Provides more capabilities for Arex
Dimensione del File 12.23 KB
Conteggio Installazioni 327
Versione Corrente 1.0.70
Ultimo Aggiornamento 2024-01-16
Data di Pubblicazione 2022-07-22
Sviluppatore wr.zhang25
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/arextest
Lingue Supportate zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Arex Chrome Extension",
    "version": "1.0.70",
    "manifest_version": 3,
    "description": "Provides more capabilities for Arex",
    "homepage_url": "http:\/\/www.arextest.com",
    "icons": {
        "128": "logo-128.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/127.0.0.1:8002\/*",
        "http:\/\/127.0.0.1:6001\/*",
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "interceptor.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_title": "Arex",
        "default_icon": "logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-scripts.js"
            ],
            "run_at": "document_start"
        }
    ]
}