Blur Page

Hide sensitive information on page

Blur Pageคืออะไร?

Blur Page เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://blur.page และคุณลักษณะหลักของมันคือ "Hide sensitive information on page"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This BlurPage extension provides a different ways to hide any information on the page without leaving your Chrome.

It allows you to hide anything on your screen including:

1. Hide multiple words
You can hide multiple words in the same or different paragraphs
2. Hide multiple lines
It is easy to hide multiple lines at the same time
3. Hide an area
You can create an area that you want to hide everything behind
4. Hide an element
This is the easiest way to hide an element. Just click a magic icon in the toolbar, and hover on any element on the page

There are different effects that you can apply for an area or multiple areas:

1. Blur
Make existing areas blurry. It also provides the ability of changing the level of blur
2. Redact
Redact areas with different colors
3. Mask
Replace text with asterisks

In addition to that, BlurPage provides a smart way to manage the areas.

1. Persists areas
Prepare areas and reload the browsers by accident! Don't worry, the areas are still there and ready to be blurred!
2. Do more
Apply an effect to multiple areas at the same time

For more information on the extension, you can visit its official website at https://blur.page                    

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

ชื่อ Blur Page Blur Page
ID olfnnakonkojpehcikfoooejonacljel
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blur-page/olfnnakonkojpehcikfoooejonacljel
คำอธิบาย Hide sensitive information on page
ขนาดไฟล์ 55.25 KB
จำนวนการติดตั้ง 148
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2022-09-09
วันที่เผยแพร่ 2022-09-08
ผู้พัฒนา https://blur.page
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://blur.page
URL หน้าช่วยเหลือ https://blur.page
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blur Page",
    "description": "Hide sensitive information on page",
    "author": "Phuoc Nguyen",
    "version": "2.0.0",
    "homepage_url": "https:\/\/blur.page",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "24": "images\/blur-page-24.png",
            "48": "images\/blur-page-48.png",
            "96": "images\/blur-page-96.png",
            "512": "images\/blur-page-512.png"
        },
        "default_title": "BlurPage"
    },
    "icons": {
        "24": "images\/blur-page-24.png",
        "48": "images\/blur-page-48.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}