SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
Qu'est-ce que SecureCanvas ?
SecureCanvas est une extension Chrome développée par james wilson, et sa fonction principale est "Securing the Canvas frontend with tracking limiters and vulnerability barriers.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SecureCanvas
Téléchargez les fichiers d'extension SecureCanvas au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | SecureCanvas |
ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
URL Officiel | https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle |
Description | Securing the Canvas frontend with tracking limiters and vulnerability barriers. |
Taille du Fichier | 53.41 KB |
Nombre d'Installations | 123 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2022-04-04 |
Date de Publication | 2022-04-04 |
Développeur | james wilson |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/" ] } |