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
官方網址 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
電子郵箱 [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"
    }
}