Messaging App Stealth Mode

Stealth mode for a certain messaging app

Vad är Messaging App Stealth Mode?

Messaging App Stealth Mode är en Chrome-tillägg utvecklad av Oryan Moshe, och dess huvudfunktion är "Stealth mode for a certain messaging app".

Tilläggsskärmbilder

screenshot

Ladda ner Messaging App Stealth Mode-förlängningens CRX-fil

Ladda ner Messaging App Stealth Mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        A stealth mode for certain messaging app.                    

Grundläggande Information om Tillägg

Namn Messaging App Stealth Mode Messaging App Stealth Mode
ID neahcibhlbdhnfdbnjfjpfgnceaegemm
Officiell webbadress https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm
Beskrivning Stealth mode for a certain messaging app
Filstorlek 38.71 KB
Antal Installationer 44
Aktuell Version 3.0
Senast Uppdaterad 2019-10-15
Publiceringsdatum 2019-10-15
Utvecklare Oryan Moshe
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}