Messaging App Stealth Mode
Stealth mode for a certain messaging app
Was ist Messaging App Stealth Mode?
Messaging App Stealth Mode ist eine Chrome-Erweiterung, die von Oryan Moshe entwickelt wurde, und ihr Hauptmerkmal ist "Stealth mode for a certain messaging app".
Erweiterungsscreenshots
Messaging App Stealth Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Messaging App Stealth Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A stealth mode for certain messaging app.
Grundlegende Informationen zur Erweiterung
Name | Messaging App Stealth Mode |
ID | neahcibhlbdhnfdbnjfjpfgnceaegemm |
Offizielle URL | https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm |
Beschreibung | Stealth mode for a certain messaging app |
Dateigröße | 38.71 KB |
Installationsanzahl | 44 |
Aktuelle Version | 3.0 |
Letztes Update | 2019-10-15 |
Veröffentlichungsdatum | 2019-10-15 |
Entwickler | Oryan Moshe |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |