Arex Chrome Extension (Trip)

Provides more capabilities for Arex

什么是Arex Chrome Extension (Trip)?

Arex Chrome Extension (Trip)是由wr.zhang25开发的Chrome扩展程序,该扩展的主要功能是“Provides more capabilities for Arex”。

扩展截图

screenshot

下载Arex Chrome Extension (Trip)扩展crx文件

下载Arex Chrome Extension (Trip)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Arex Chrome Extension (Trip) Arex Chrome Extension (Trip)
ID aeedmjhchkfdihlhngofokjmmielhjle
官方URL https://chromewebstore.google.com/detail/arex-chrome-extension-tri/aeedmjhchkfdihlhngofokjmmielhjle
简介 Provides more capabilities for Arex
文件大小 11.58 KB
安装次数 826
当前版本 1.0.55
更新时间 2024-01-11
上架时间 2023-04-26
开发者 wr.zhang25
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}