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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        此插件可突破浏览器跨域限制,原理是通过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"
        }
    ]
}