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. 扩展基本信息
| 名称 | |
| ID | jbkfjckibkmcfplbjoffjhcgdmckigle |
| 官方URL | 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\/"
]
} | |