SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
Co je SecureCanvas?
SecureCanvas je rozšíření Chrome vyvinuté james wilson, a jeho hlavní funkcí je „Securing the Canvas frontend with tracking limiters and vulnerability barriers.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření SecureCanvas
Stáhněte si soubory rozšíření SecureCanvas ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | SecureCanvas |
ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
Oficiální URL | https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle |
Popis | Securing the Canvas frontend with tracking limiters and vulnerability barriers. |
Velikost souboru | 53.41 KB |
Počet instalací | 123 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2022-04-04 |
Datum Vydání | 2022-04-04 |
Vývojář | james wilson |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/" ] } |