Secure Web World

Blur your images and contacts. Store message with Mutation and get back deleted messages.

Secure Web Worldคืออะไร?

Secure Web World เป็นส่วนขยายของ Chrome ที่พัฒนาโดย muhammedikinci และคุณลักษณะหลักของมันคือ "Blur your images and contacts. Store message with Mutation and get back deleted messages."

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

screenshot
screenshot
screenshot

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

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

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

                        Secure Web World can hide your private WhatsApp sections like contacts, photos, and messages. You can use it in a meeting, public area, or office. Also, SWW can get back your deleted messages. You don't need to click anywhere in extension for those features, just download and go to web WhatsApp and you can go back to your work. SWW collect all your message in local storage and it never shares your messages to anyone. SWW is an open-source project, you can review codes and make your special changes.                    

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

ชื่อ Secure Web World Secure Web World
ID agkckhaodkgacbeiioikncgibfomoimi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/secure-web-world/agkckhaodkgacbeiioikncgibfomoimi
คำอธิบาย Blur your images and contacts. Store message with Mutation and get back deleted messages.
ขนาดไฟล์ 10.63 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2022-02-08
วันที่เผยแพร่ 2020-10-21
คะแนน 2.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา muhammedikinci
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/muhammedikinci/securewebworld
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Secure Web World",
    "version": "1.5",
    "description": "Blur your images and contacts. Store message with Mutation and get back deleted messages.",
    "manifest_version": 2,
    "author": "Muhammed \u0130K\u0130NC\u0130",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.whatsapp.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.whatsapp.com\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "contentScript.js"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}