SecureCanvas

Securing the Canvas frontend with tracking limiters and vulnerability barriers.

Cos'è SecureCanvas?

SecureCanvas è un'estensione di Chrome sviluppata da james wilson, e la sua funzione principale è "Securing the Canvas frontend with tracking limiters and vulnerability barriers.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SecureCanvas

Scarica i file di estensione SecureCanvas 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

                        Secure the Canvas frontend with tracking limiters and vulnerability barriers. SecureCanvas blocks some requests from the Canvas frontend that tracks users. It also includes a button next to all embeds and iframes that will load the original embed content when clicked. This is to stop some attacks on the user using embeds.                    

Informazioni di Base sull'Estensione

Nome SecureCanvas SecureCanvas
ID jbkfjckibkmcfplbjoffjhcgdmckigle
URL Ufficiale https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle
Descrizione Securing the Canvas frontend with tracking limiters and vulnerability barriers.
Dimensione del File 53.41 KB
Conteggio Installazioni 123
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-04-04
Data di Pubblicazione 2022-04-04
Sviluppatore james wilson
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SecureCanvas",
    "description": "Securing the Canvas frontend with tracking limiters and vulnerability barriers.",
    "version": "0.0.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instructure.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "secure.js"
            ]
        }
    ],
    "permissions": [
        "declarativeNetRequest",
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "netreq_rule",
                "enabled": true,
                "path": "canvas_block.json"
            }
        ]
    },
    "host_permissions": [
        "*:\/\/*.instructure.com\/"
    ]
}