Messaging App Stealth Mode

Stealth mode for a certain messaging app

Cos'è Messaging App Stealth Mode?

Messaging App Stealth Mode è un'estensione di Chrome sviluppata da Oryan Moshe, e la sua funzione principale è "Stealth mode for a certain messaging app".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Messaging App Stealth Mode

Scarica i file di estensione Messaging App Stealth Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A stealth mode for certain messaging app.                    

Informazioni di Base sull'Estensione

Nome Messaging App Stealth Mode Messaging App Stealth Mode
ID neahcibhlbdhnfdbnjfjpfgnceaegemm
URL Ufficiale https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm
Descrizione Stealth mode for a certain messaging app
Dimensione del File 38.71 KB
Conteggio Installazioni 44
Versione Corrente 3.0
Ultimo Aggiornamento 2019-10-15
Data di Pubblicazione 2019-10-15
Sviluppatore Oryan Moshe
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.0",
    "manifest_version": 2,
    "name": "Messaging App Stealth Mode",
    "description": "Stealth mode for a certain messaging app",
    "author": "Oryan Moshe",
    "permissions": [
        "activeTab",
        "*:\/\/web.whatsapp.com\/*",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "48": "icons8-northern-lights-48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons8-northern-lights-48-mono.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ],
            "css": [
                "stealthmode.css"
            ],
            "js": [
                "jquery-3.3.1.min.js"
            ]
        }
    ]
}