Privacy Extension For WhatsApp Web

Hides your messages until you hover over them.

Privacy Extension For WhatsApp Webคืออะไร?

Privacy Extension For WhatsApp Web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lukaslen.com และคุณลักษณะหลักของมันคือ "Hides your messages until you hover over them."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Privacy Extension For WhatsApp Web

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

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

                        To increase privacy in public spaces the Privacy Extension For WhatsApp™ Web blurs your messages. Your messages and other content only reveals upon hovering over with your mouse cursor. Additionally you can quickly toggle all effects by using a keyboard shortcut or by clicking the toggle button in the extension menu.

It adapts to your needs by letting you decide which elements you want to blur. Most important options:

- All messages in chat: Blurs all messages in the current chat.
- Last messages preview: Blurs all message previews on the left.
- Media preview: Blurs all images, videos, stickers, ... in separation from the text.
- Profile pictures: Blurs all profile pictures.

An extended list of features can be found on our page: https://pfwa.lukaslen.com/

Quick Toggle: Use the keyboard shortcut to quickly toggle the extension on or off (Default: Alt+X). To change this navigate to: "chrome://extensions/shortcuts"


---
This extension does not collect information about you or your messages. We only communicate with our server to display information about problems or updates. Visit the privacy policy to learn more.

This project is licensed under the MIT license - see the LICENSE file for details.

WhatsApp is a trademark of WhatsApp Inc., registered in the U.S. and other countries. This extension is an independent project developed by Lukas Lenhardt and has no relationship to WhatsApp or WhatsApp Inc.                    

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

ชื่อ Privacy Extension For WhatsApp Web Privacy Extension For WhatsApp Web
ID jbojhlhhggfmmkpefknmbdhlaghehini
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/privacy-extension-for-wha/jbojhlhhggfmmkpefknmbdhlaghehini
คำอธิบาย Hides your messages until you hover over them.
ขนาดไฟล์ 32.11 KB
จำนวนการติดตั้ง 944,599
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2024-02-23
วันที่เผยแพร่ 2020-06-22
คะแนน 3.91/5 รวมทั้งหมด 184 คะแนน
ผู้พัฒนา https://lukaslen.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://pfwa.lukaslen.com/
URL หน้าช่วยเหลือ https://github.com/LukasLen/Privacy-Extension-For-WhatsApp-Web/issues
URL หน้านโยบายความเป็นส่วนตัว https://lukaslen.com/legal
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Privacy Extension For WhatsApp Web",
    "description": "Hides your messages until you hover over them.",
    "version": "3.0.1",
    "action": {
        "default_title": "Privacy Extension For WhatsApp Web",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "scripts\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/statusOn.png",
                "images\/statusOff.png",
                "css\/messages.css",
                "css\/messagesPreview.css",
                "css\/mediaPreview.css",
                "css\/mediaGallery.css",
                "css\/textInput.css",
                "css\/profilePic.css",
                "css\/name.css",
                "css\/noDelay.css",
                "css\/unblurActive.css"
            ],
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "Toggle On\/Off"
        }
    }
}