Allow CORS: Access-Control-Allow-Origin

Easily add (Access-Control-Allow-Origin: *) rule to the response header.

Cos'è Allow CORS: Access-Control-Allow-Origin?

Allow CORS: Access-Control-Allow-Origin è un'estensione di Chrome sviluppata da Muyor, e la sua funzione principale è "Easily add (Access-Control-Allow-Origin: *) rule to the response header.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Allow CORS: Access-Control-Allow-Origin

Scarica i file di estensione Allow CORS: Access-Control-Allow-Origin 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

                        Allow CORS: Access-Control-Allow-Origin lets you easily perform cross-domain Ajax requests in web applications.

Simply activate the add-on and perform the request. CORS or Cross-Origin Resource Sharing is blocked in modern browsers by default (in JavaScript APIs). Installing this add-on will allow you to unblock this feature. Please note that, when the add-on is added to your browser, it is inactive by default (toolbar icon is grey C letter). If you want to activate the add-on, please open the toolbar popup and press the toggle button on the left side. The icon will turn to an orange C letter.

If you have a feature request or found a bug to report, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/access-control-allow-origin.html).                    

Informazioni di Base sull'Estensione

Nome Allow CORS: Access-Control-Allow-Origin Allow CORS: Access-Control-Allow-Origin
ID lhobafahddgcelffkeicbaginigeejlf
URL Ufficiale https://chromewebstore.google.com/detail/allow-cors-access-control/lhobafahddgcelffkeicbaginigeejlf
Descrizione Easily add (Access-Control-Allow-Origin: *) rule to the response header.
Dimensione del File 74.16 KB
Conteggio Installazioni 777,528
Versione Corrente 0.1.9
Ultimo Aggiornamento 2023-09-04
Data di Pubblicazione 2020-03-08
Valutazione 3.39/5 Totale 254 Valutazioni
Sviluppatore Muyor
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://mybrowseraddon.com/access-control-allow-origin.html
URL della Pagina di Aiuto https://mybrowseraddon.com/access-control-allow-origin.html
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.9",
    "manifest_version": 3,
    "offline_enabled": true,
    "host_permissions": [
        ""
    ],
    "name": "Allow CORS: Access-Control-Allow-Origin",
    "homepage_url": "https:\/\/mybrowseraddon.com\/access-control-allow-origin.html",
    "description": "Easily add (Access-Control-Allow-Origin: *) rule to the response header.",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ],
    "commands": {
        "toggle-state": {
            "description": "Access-Control-Allow-Origin",
            "suggested_key": {
                "mac": "Command+Shift+D",
                "default": "Ctrl+Shift+D"
            }
        }
    },
    "action": {
        "default_popup": "data\/popup\/popup.html",
        "default_title": "Access-Control-Allow-Origin",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}