Text Blurrer

Blurring sensitive specified text/keyword.

Text Blurrerคืออะไร?

Text Blurrer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย horihiro.dev และคุณลักษณะหลักของมันคือ "Blurring sensitive specified text/keyword."

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

screenshot

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

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

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

                        Blur text/keywords you specified in web pages. When you need to stream or record using your web browser, you can hide your sensitive information i.e. email, account name, address etc by blurring.

You can use regular expression to blur keywords by enabling `Use Regular Expression` button.
And  if you want to switch the blur mode between `case sensitive` and `case insensitive`, you can use `Match Case` button.

Change logs
https://github.com/horihiro/TextBlurrer-ChromeExtension#change-logs

(v0.1.8)
  - Bug fixes
    - Fix misalignment position of mask for input element with box-sizing set to border-box 

(v0.1.7)
  - Bug fixes
    - Fix issue if keywords/patterns contain empty lines

(v0.1.6)
  Rollback to v0.1.4

(v0.1.5)
  - Bug fixes
    - Fix misalignment of mask position
    - Improve performance with many keywords/patterns

(v0.1.4)
  - New features
    - Add a link to new issue
  - Bug fixes
    - Fix logic for getting backgroud color
    - Restore title attribute

(v0.1.3)
  - New features
    - Blur keywords splitted into some elements
    - Add option to show a value in tooltip on mouse over blurred area 
    - Add **experimental** option to blur value in `input` tag  
      ⚠️ this cannot detect change by `value` property and javascript
  - Bug fixes
    - Improve performance by change blurring logic
    - Blur keywords in shadow DOM

(v0.1.2)
  - Add warning on popup for RegExp one character matches
  - Improve performance

(v0.1.1)
  - Make buttons more clear.

(v0.1.0)
  - Add buttons for switching mode of text searching                    

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

ชื่อ Text Blurrer Text Blurrer
ID mbikojdgkmpjfackcmiliemgmkdkbbcl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/text-blurrer/mbikojdgkmpjfackcmiliemgmkdkbbcl
คำอธิบาย Blurring sensitive specified text/keyword.
ขนาดไฟล์ 30.61 KB
จำนวนการติดตั้ง 216
เวอร์ชันปัจจุบัน 0.1.8
อัปเดตครั้งล่าสุด 2024-01-29
วันที่เผยแพร่ 2023-08-30
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา horihiro.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/horihiro/TextBlurrer-ChromeExtension
URL หน้าช่วยเหลือ https://github.com/horihiro/TextBlurrer-ChromeExtension/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Blurrer",
    "version": "0.1.8",
    "version_name": "0.1.8",
    "description": "Blurring sensitive specified text\/keyword.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "img\/icon128.png",
        "default_popup": "popup\/main.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content\/js\/main.js"
            ]
        }
    ]
}