Arex Chrome Extension

Provides more capabilities for Arex

Apa itu Arex Chrome Extension?

Arex Chrome Extension adalah ekstensi Chrome yang dikembangkan oleh wr.zhang25, dan fitur utamanya adalah "Provides more capabilities for Arex".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Arex Chrome Extension

Unduh file ekstensi Arex Chrome Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Arex Chrome Extension Arex Chrome Extension
ID jmmficadjneeekafmnheppeoehlgjdjj
URL Resmi https://chromewebstore.google.com/detail/arex-chrome-extension/jmmficadjneeekafmnheppeoehlgjdjj
Deskripsi Provides more capabilities for Arex
Ukuran File 12.23 KB
Jumlah Instalasi 327
Versi Saat Ini 1.0.70
Terakhir Diperbarui 2024-01-16
Tanggal Publikasi 2022-07-22
Pengembang wr.zhang25
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/arextest
Bahasa yang Didukung 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"
        }
    ]
}