SecureCanvas
Securing the Canvas frontend with tracking limiters and vulnerability barriers.
Что такое SecureCanvas?
SecureCanvas - это расширение Chrome, разработанное james wilson, и его основная функция - "Securing the Canvas frontend with tracking limiters and vulnerability barriers.".
Снимки экрана расширения
Скачать файл CRX расширения SecureCanvas
Скачайте файлы расширений 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 |
Электронная почта | [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\/" ] } |