Secure Web World

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

Secure Web World क्या है?

Secure Web World muhammedikinci द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blur your images and contacts. Store message with Mutation and get back deleted messages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Secure Web World एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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