CORSet!

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

O que é CORSet!?

CORSet! é uma extensão do Chrome desenvolvida por Giuseppe Scotto Lavina, e sua principal característica é "Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CORSet!

Baixe arquivos de extensão CORSet! no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome CORSet! CORSet!
ID oljdpckmidhdkppcbigjhbgahhillkoj
URL Oficial https://chromewebstore.google.com/detail/corset/oljdpckmidhdkppcbigjhbgahhillkoj
Descrição Enable cross domain request CORS (with MV3 Api) only on the user enabled Tabs.
Tamanho do Arquivo 37.53 KB
Contagem de Instalações 57
Versão Atual 1.0.0
Última Atualização 2021-09-24
Data de Publicação 2021-09-24
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor Giuseppe Scotto Lavina
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}