Secure Web World

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

什么是Secure Web World?

Secure Web World是由muhammedikinci开发的Chrome扩展程序,该扩展的主要功能是“Blur your images and contacts. Store message with Mutation and get back deleted messages.”。

扩展截图

screenshot
screenshot
screenshot

下载Secure Web World扩展crx文件

下载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"
    }
}