SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
什麼是SecureCanvas?
SecureCanvas是由james wilson開發的Chrome擴展程式,該擴展的主要功能是“Securing the Canvas frontend with tracking limiters and vulnerability barriers.”。
擴展截圖
下載SecureCanvas擴展crx文件
下載SecureCanvas擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | SecureCanvas |
ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
官方網址 | https://chromewebstore.google.com/detail/securecanvas/jbkfjckibkmcfplbjoffjhcgdmckigle |
簡介 | Securing the Canvas frontend with tracking limiters and vulnerability barriers. |
檔案大小 | 53.41 KB |
安裝次數 | 123 |
目前版本 | 0.0.1 |
更新時間 | 2022-04-04 |
上架時間 | 2022-04-04 |
開發者 | james wilson |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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\/" ] } |