Cone Devtools

菜鸟前端cone插件,里面包含接口mock,资源代理等

Cone Devtools란 무엇입니까?

Cone Devtools은(는) apilabuser에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "菜鸟前端cone插件,里面包含接口mock,资源代理等"입니다.

확장 프로그램 스크린샷

screenshot

Cone Devtools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        为cone系统apiCenter服务,可以根据cone用户在系统界面上配置的url规则,在开发过程中代理项目的url到mock服务,用于前端开发的请求代理。打开之后通过 window.postMessage发送请求type:setMockApi ,apiList 存放需要代理的接口列表即可使用代理功能。                    

확장 프로그램 기본 정보

이름 Cone Devtools Cone Devtools
ID gncbmllikcmbcacmjcacmdlibepfmkme
공식 URL https://chromewebstore.google.com/detail/cone-devtools/gncbmllikcmbcacmjcacmdlibepfmkme
설명 菜鸟前端cone插件,里面包含接口mock,资源代理等
파일 크기 830 KB
설치 횟수 177
현재 버전 0.0.34
최근 업데이트 2023-01-10
출시 날짜 2021-07-04
평점 5.00/5 총 1 개의 평점
개발자 apilabuser
이메일 [email protected]
결제 유형 free
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Cone Devtools",
    "name": "Cone Devtools",
    "description": "\u83dc\u9e1f\u524d\u7aefcone\u63d2\u4ef6\uff0c\u91cc\u9762\u5305\u542b\u63a5\u53e3mock\uff0c\u8d44\u6e90\u4ee3\u7406\u7b49",
    "version": "0.0.34",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        ""
    ],
    "icons": {
        "48": "assets\/cone-logo.png",
        "128": "assets\/cone-logo.png"
    },
    "background": {
        "scripts": [
            "static\/js\/background.js"
        ],
        "persistent": true
    },
    "devtools_page": "panel.html",
    "browser_action": {
        "default_icon": {
            "19": "assets\/cone-logo.png",
            "38": "assets\/cone-logo.png",
            "128": "assets\/cone-logo.png"
        },
        "default_title": "\u914d\u7f6e",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "static\/js\/inject.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*.taobao.com\/*",
                "*:\/\/*.tmall.com\/*",
                "*:\/\/*.alipay.com\/*",
                "*:\/\/*.alibaba-inc.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.reviewcook.taobao.com\/*",
                "*:\/\/pre-wormhole.taobao.com\/wow\/heihe\/act\/guan-debug*",
                "*:\/\/pre-wormhole.taobao.com\/wow\/heihe\/act\/guan-proxy-test*",
                "*:\/\/login.alibaba-inc.com\/*",
                "*:\/\/pre-wormhole.tmall.com\/wow\/heihe\/act\/guan-proxy-test*"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "static\/js\/content.js",
        "\/static\/js\/*"
    ]
}