Cone Devtools

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

什么是Cone Devtools?

Cone Devtools是由apilabuser开发的Chrome扩展程序,该扩展的主要功能是“菜鸟前端cone插件,里面包含接口mock,资源代理等”。

扩展截图

screenshot

下载Cone Devtools扩展crx文件

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

扩展使用说明

                        为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\/*"
    ]
}