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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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\/"
    ]
}