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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}