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 |
公式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 |
Eメール | [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\/" ] } |