NoCors

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

Cos'è NoCors?

NoCors è un'estensione di Chrome sviluppata da chenghaoyx, e la sua funzione principale è "允许网页跨域的开发调试和测试工具.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NoCors

Scarica i file di estensione NoCors in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome NoCors NoCors
ID nfakhfincbmkmomdkmknpebflpalkkcm
URL Ufficiale https://chrome.google.com/webstore/detail/nocors/nfakhfincbmkmomdkmknpebflpalkkcm
Descrizione 允许网页跨域的开发调试和测试工具.
Dimensione del File 15.46 KB
Conteggio Installazioni 145
Versione Corrente 1.4.1
Ultimo Aggiornamento 2019-12-24
Data di Pubblicazione 2019-12-21
Sviluppatore chenghaoyx
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}