SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
What is SecureCanvas?
SecureCanvas is a Chrome extension developed by james wilson, and its main feature is "Securing the Canvas frontend with tracking limiters and vulnerability barriers.".
Extension Screenshots
Download SecureCanvas Extension CRX File
Download SecureCanvas extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | SecureCanvas |
ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
Official URL | https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle |
Description | Securing the Canvas frontend with tracking limiters and vulnerability barriers. |
File Size | 53.41 KB |
Installation Count | 123 |
Current Version | 0.0.1 |
Last Updated | 2022-04-04 |
Publish Date | 2022-04-04 |
Developer | james wilson |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/" ] } |