Arex Chrome Extension

Provides more capabilities for Arex

Arex Chrome Extension là gì?

Arex Chrome Extension là một tiện ích mở rộng Chrome được phát triển bởi wr.zhang25, và tính năng chính của nó là "Provides more capabilities for Arex".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Arex Chrome Extension

Tải xuống các tệp mở rộng Arex Chrome Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Arex Chrome Extension Arex Chrome Extension
ID jmmficadjneeekafmnheppeoehlgjdjj
URL Chính Thức https://chromewebstore.google.com/detail/arex-chrome-extension/jmmficadjneeekafmnheppeoehlgjdjj
Mô tả Provides more capabilities for Arex
Kích Thước Tệp 12.23 KB
Số Lần Cài Đặt 327
Phiên Bản Hiện Tại 1.0.70
Cập Nhật Lần Cuối 2024-01-16
Ngày Phát Hành 2022-07-22
Nhà Phát Triển wr.zhang25
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/arextest
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}