BlurImage

This extension will blur all images in img tags on the page. Can whitelist by domains

BlurImageคืออะไร?

BlurImage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dliu และคุณลักษณะหลักของมันคือ "This extension will blur all images in img tags on the page. Can whitelist by domains"

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

screenshot

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

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

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

                        Blur images from web pages

The Blur Images extension will blur out any images and videos. This extension is useful for when you are at work or any other place where you might not want everyone around you to see your images and videos from your private pages. Can whitelist pages.                    

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

ชื่อ BlurImage BlurImage
ID obgehdjfdokhbmbgdkaklcphepdhombh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blurimage/obgehdjfdokhbmbgdkaklcphepdhombh
คำอธิบาย This extension will blur all images in img tags on the page. Can whitelist by domains
ขนาดไฟล์ 24.03 KB
จำนวนการติดตั้ง 122
เวอร์ชันปัจจุบัน 0.0.8
อัปเดตครั้งล่าสุด 2024-02-13
วันที่เผยแพร่ 2024-02-05
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา dliu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BlurImage",
    "description": "This extension will blur all images in img tags on the page. Can whitelist by domains",
    "version": "0.0.8",
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon-16.png",
            "48": "assets\/icon-48.png",
            "128": "assets\/icon-128.png"
        },
        "default_title": "BlurImage",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3
}