NoCors

允许网页跨域的开发调试和测试工具.

What is NoCors?

NoCors is a Chrome extension developed by chenghaoyx, and its main feature is "允许网页跨域的开发调试和测试工具.".

Extension Screenshots

screenshot

Download NoCors Extension CRX File

Download NoCors 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

                        强制所有返回数据添加CORS返回头,避免开发中遇到的跨域问题
取消CORS访问限制,方便前端开发人员、调试应用                    

Extension Basic Information

Name NoCors NoCors
ID nfakhfincbmkmomdkmknpebflpalkkcm
Official URL https://chrome.google.com/webstore/detail/nocors/nfakhfincbmkmomdkmknpebflpalkkcm
Description 允许网页跨域的开发调试和测试工具.
File Size 15.46 KB
Installation Count 145
Current Version 1.4.1
Last Updated 2019-12-24
Publish Date 2019-12-21
Developer chenghaoyx
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.4.1",
    "name": "NoCors",
    "manifest_version": 2,
    "description": "\u5141\u8bb8\u7f51\u9875\u8de8\u57df\u7684\u5f00\u53d1\u8c03\u8bd5\u548c\u6d4b\u8bd5\u5de5\u5177.",
    "browser_action": {
        "default_icon": "img\/logo.png",
        "default_title": "NoCors",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/logo.png",
        "128": "img\/logo.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/hock1.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "contextMenus",
        "tabs",
        "notifications",
        "webRequest",
        "storage",
        "webRequest",
        "",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "js\/inject.js"
    ]
}