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."입니다.

확장 프로그램 스크린샷

screenshot

SecureCanvas 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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\/"
    ]
}