ZeroBlur

Blur any sensitive information from any website or web app. Keep data safe when delivering demos or recording videos!

ZeroBlurคืออะไร?

ZeroBlur เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://divbyzero.com และคุณลักษณะหลักของมันคือ "Blur any sensitive information from any website or web app. Keep data safe when delivering demos or recording videos!"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ZeroBlur

ดาวน์โหลดไฟล์ส่วนขยาย ZeroBlur ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Blur any sensitive information from any website or web app. Keep data safe when delivering demos or recording videos!


Have you ever recorded a product demo just to realize it contains sensitive data, like personal emails or your customers' data?

It happens all the time in most SaaS companies. If you've been recording a video, you might want to avoid redoing the whole recording by post-editing it and adding blur on sensitive data.

If you are running a webinar or a live call, it could be too late, and some attendees could have already made a screenshot of some private information you didn't intend to make public. 

If all of this sounds familiar, ZeroBlur is the perfect companion for you!

With ZeroBlur, you can select specific elements or areas of your app or website that you want to be blurred. Choose if you're going to blur them only on one particular page or site-wide, and you're good to go!

Never again show your sensitive data during your calls and demos! Forget video post-production to blur out data! Everything will be already blurred when you hit the record button!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ZeroBlur ZeroBlur
ID ckmpibbifmcamfmfelkencbbiilpcfjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zeroblur/ckmpibbifmcamfmfelkencbbiilpcfjg
คำอธิบาย Blur any sensitive information from any website or web app. Keep data safe when delivering demos or recording videos!
ขนาดไฟล์ 95.89 KB
จำนวนการติดตั้ง 12,933
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2022-02-18
วันที่เผยแพร่ 2021-10-14
คะแนน 4.65/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา https://divbyzero.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://divbyzero.com/tools/blur-extension/
URL หน้าช่วยเหลือ https://divbyzero.com/tools/blur-extension/
URL หน้านโยบายความเป็นส่วนตัว https://divbyzero.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ZeroBlur",
    "short_name": "ZeroBlur",
    "description": "Blur any sensitive information from any website or web app. Keep data safe when delivering demos or recording videos!",
    "version": "1.2.0",
    "author": "DivByZero",
    "browser_action": {
        "default_title": "ZeroBlur",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/static\/logo\/16.png",
            "32": ".\/static\/logo\/32.png",
            "48": ".\/static\/logo\/48.png",
            "128": ".\/static\/logo\/128.png"
        }
    },
    "icons": {
        "16": ".\/static\/logo\/16.png",
        "32": ".\/static\/logo\/32.png",
        "48": ".\/static\/logo\/48.png",
        "128": ".\/static\/logo\/128.png"
    },
    "content_scripts": [
        {
            "js": [
                "blur-manager.js"
            ],
            "css": [
                "blur-manager.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggleEditMode": {
            "description": "Toggles editing of blur on current page.",
            "suggested_key": {
                "default": "Alt+Shift+1"
            }
        },
        "togglePointToElement": {
            "description": "Toggles blurring of page element.",
            "suggested_key": {
                "default": "Alt+Shift+2"
            }
        },
        "togglePointToArea": {
            "description": "Toggles blurring of arbitrary area.",
            "suggested_key": {
                "default": "Alt+Shift+3"
            }
        },
        "toggleDocumentTitleBlur": {
            "description": "Toggles blurring of document title and favicon.",
            "suggested_key": {
                "default": "Alt+Shift+4"
            }
        }
    },
    "web_accessible_resources": [
        "*.ico"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline';",
    "offline_enabled": false,
    "minimum_chrome_version": "76"
}