CORSet!

Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.

CORSet!とは何ですか?

CORSet!はGiuseppe Scotto Lavinaによって開発されたChromeの拡張機能で、その主な機能は「Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Allows to make cross domain request with the MV3 API only on user's selected tabs.
(https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)

Click on the extension's icon to enable/disable CORSet on the current tab.

A small icon will be placed on the bottom-right side of the screen to remind you that CORSet is active on the current tab.

Browsing the WWW with CORS hurts really bad your system security, enable it just for development and on tabs where you really need it.

Required Chrome 90+
Icon made by Those Icons from www.flaticon.com                    

拡張機能の基本情報

名前 CORSet! CORSet!
ID oljdpckmidhdkppcbigjhbgahhillkoj
公式URL https://chromewebstore.google.com/detail/corset/oljdpckmidhdkppcbigjhbgahhillkoj
説明 Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.
ファイルサイズ 37.53 KB
インストール数 57
現在のバージョン 1.0.0
最終更新日 2021-09-24
公開日 2021-09-24
評価 5.00/5 合計 7 レビュー
開発者 Giuseppe Scotto Lavina
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CORSet!",
    "description": "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.",
    "version": "1.0.0",
    "author": "Giuseppe Scotto Lavina",
    "manifest_version": 3,
    "minimum_chrome_version": "90.0",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox; script-src 'self'; object-src 'self'"
    },
    "background": {
        "type": "module",
        "service_worker": "\/corset.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "webNavigation",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "Click to enable.",
        "default_icon": {
            "16": "\/icons\/corset-16.png",
            "32": "\/icons\/corset-32.png",
            "64": "\/icons\/corset-64.png",
            "128": "\/icons\/corset-128.png"
        }
    },
    "icons": {
        "16": "\/icons\/corset-active-16.png",
        "32": "\/icons\/corset-active-32.png",
        "64": "\/icons\/corset-active-64.png",
        "128": "\/icons\/corset-active-128.png"
    }
}