SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
Was ist SecureCanvas?
SecureCanvas ist eine Chrome-Erweiterung, die von james wilson entwickelt wurde, und ihr Hauptmerkmal ist "Securing the Canvas frontend with tracking limiters and vulnerability barriers.".
Erweiterungsscreenshots
SecureCanvas-Erweiterungs-CRX-Datei herunterladen
Laden Sie SecureCanvas-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | SecureCanvas |
ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
Offizielle URL | https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle |
Beschreibung | Securing the Canvas frontend with tracking limiters and vulnerability barriers. |
Dateigröße | 53.41 KB |
Installationsanzahl | 123 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2022-04-04 |
Veröffentlichungsdatum | 2022-04-04 |
Entwickler | james wilson |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |