CORS Helper

Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.

CORS Helperとは何ですか?

CORS HelperはAtomによって開発されたChromeの拡張機能で、その主な機能は「Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.」です。

拡張機能のスクリーンショット

screenshot
screenshot

CORS Helper拡張機能のCRXファイルをダウンロード

CORS Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Users can set different return values to allow users to be granted access to specified resources from different source servers.
Users can customize the value of the HTTP response header

It should be noted that when Access-Control-Allow-Origin is set to "*", the identity certificate cannot be attached.
Of course you can specify a unique Origin such as http://localhost:3000

Instructions
After installing the plugin, click the icon in the upper right corner to enable "cross-source resource sharing".

Custom configuration
After installing the plugin, click the icon in the upper right corner and click "Customize" to enter the configuration page.

The "HTTP Response Header" page allows you to add custom Access-Control-* header information to the HTTP response header
"White List" page allows you to customize the website for applying rules                    

拡張機能の基本情報

名前 CORS Helper CORS Helper
ID jckpaobldaolbbchaeicopkcljcaiaka
公式URL https://chromewebstore.google.com/detail/cors-helper/jckpaobldaolbbchaeicopkcljcaiaka
説明 Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.
ファイルサイズ 67.38 KB
インストール数 4,335
現在のバージョン 1.2.2
最終更新日 2019-06-14
公開日 2019-06-11
評価 3.67/5 合計 3 レビュー
開発者 Atom
Eメール [email protected]
支払い方法 free
対応言語 en-US,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CORS Helper",
    "description": "Lightweight CORS web development tool allows developers to modify Ajax responses Access-Control-Allow-Origin:*.",
    "version": "1.2.2",
    "homepage_url": "https:\/\/github.com\/jhrxx\/CORS-Chrome-extension",
    "default_locale": "en_US",
    "browser_action": {
        "default_icon": "off.png",
        "default_popup": "popup.html",
        "default_title": "Cross-Origin Settings"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "storage",
        "webRequest",
        "",
        "webRequestBlocking"
    ]
}