Cone Devtools

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

What is Cone Devtools?

Cone Devtools is a Chrome extension developed by apilabuser, and its main feature is "菜鸟前端cone插件,里面包含接口mock,资源代理等".

Extension Screenshots

screenshot

Download Cone Devtools Extension CRX File

Download Cone Devtools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Cone Devtools Cone Devtools
ID gncbmllikcmbcacmjcacmdlibepfmkme
Official URL https://chromewebstore.google.com/detail/cone-devtools/gncbmllikcmbcacmjcacmdlibepfmkme
Description 菜鸟前端cone插件,里面包含接口mock,资源代理等
File Size 830 KB
Installation Count 177
Current Version 0.0.34
Last Updated 2023-01-10
Publish Date 2021-07-04
Rating 5.00/5 Total 1 Ratings
Developer apilabuser
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}