Arex Chrome Extension

Provides more capabilities for Arex

What is Arex Chrome Extension?

Arex Chrome Extension is a Chrome extension developed by wr.zhang25, and its main feature is "Provides more capabilities for Arex".

Extension Screenshots

screenshot

Download Arex Chrome Extension Extension CRX File

Download Arex Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Arex Chrome Extension Arex Chrome Extension
ID jmmficadjneeekafmnheppeoehlgjdjj
Official URL https://chromewebstore.google.com/detail/arex-chrome-extension/jmmficadjneeekafmnheppeoehlgjdjj
Description Provides more capabilities for Arex
File Size 12.23 KB
Installation Count 327
Current Version 1.0.70
Last Updated 2024-01-16
Publish Date 2022-07-22
Developer wr.zhang25
Email [email protected]
Payment Type free
Extension Website https://github.com/arextest
Supported Languages 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"
        }
    ]
}