Arex Chrome Extension (Trip)

Provides more capabilities for Arex

What is Arex Chrome Extension (Trip)?

Arex Chrome Extension (Trip) 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 (Trip) Extension CRX File

Download Arex Chrome Extension (Trip) 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 (Trip) Arex Chrome Extension (Trip)
ID aeedmjhchkfdihlhngofokjmmielhjle
Official URL https://chromewebstore.google.com/detail/arex-chrome-extension-tri/aeedmjhchkfdihlhngofokjmmielhjle
Description Provides more capabilities for Arex
File Size 11.58 KB
Installation Count 826
Current Version 1.0.55
Last Updated 2024-01-11
Publish Date 2023-04-26
Developer wr.zhang25
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Arex Chrome Extension (Trip)",
    "version": "1.0.55",
    "manifest_version": 3,
    "description": "Provides more capabilities for Arex",
    "homepage_url": "https:\/\/arextest.github.io\/arex-doc\/",
    "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"
        }
    ]
}