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
Eメール [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"
    }
}