SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
Hvad er SecureCanvas?
SecureCanvas er en Chrome-udvidelse udviklet af james wilson, og dens hovedfunktion er "Securing the Canvas frontend with tracking limiters and vulnerability barriers.".
Udvidelsesskærmbilleder
Download SecureCanvas-udvidelses-CRX-fil
Download SecureCanvas-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | SecureCanvas |
ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
Officiel URL | https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle |
Beskrivelse | Securing the Canvas frontend with tracking limiters and vulnerability barriers. |
Filstørrelse | 53.41 KB |
Antal Installationer | 123 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2022-04-04 |
Udgivelsesdato | 2022-04-04 |
Udvikler | james wilson |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/" ] } |