Secure Web World

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

Secure Web World là gì?

Secure Web World là một tiện ích mở rộng Chrome được phát triển bởi muhammedikinci, và tính năng chính của nó là "Blur your images and contacts. Store message with Mutation and get back deleted messages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Secure Web World

Tải xuống các tệp mở rộng Secure Web World dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Secure Web World Secure Web World
ID agkckhaodkgacbeiioikncgibfomoimi
URL Chính Thức https://chromewebstore.google.com/detail/secure-web-world/agkckhaodkgacbeiioikncgibfomoimi
Mô tả Blur your images and contacts. Store message with Mutation and get back deleted messages.
Kích Thước Tệp 10.63 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2022-02-08
Ngày Phát Hành 2020-10-21
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển muhammedikinci
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/muhammedikinci/securewebworld
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}