Arex Chrome Extension

Provides more capabilities for Arex

什麼是Arex Chrome Extension?

Arex Chrome Extension是由wr.zhang25開發的Chrome擴展程式,該擴展的主要功能是“Provides more capabilities for Arex”。

擴展截圖

screenshot

下載Arex Chrome Extension擴展crx文件

下載Arex Chrome Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Arex Chrome Extension Arex Chrome Extension
ID jmmficadjneeekafmnheppeoehlgjdjj
官方網址 https://chromewebstore.google.com/detail/arex-chrome-extension/jmmficadjneeekafmnheppeoehlgjdjj
簡介 Provides more capabilities for Arex
檔案大小 12.23 KB
安裝次數 327
目前版本 1.0.70
更新時間 2024-01-16
上架時間 2022-07-22
開發者 wr.zhang25
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/arextest
支援的語言 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"
        }
    ]
}