Messaging App Stealth Mode
Stealth mode for a certain messaging app
What is Messaging App Stealth Mode?
Messaging App Stealth Mode is a Chrome extension developed by Oryan Moshe, and its main feature is "Stealth mode for a certain messaging app".
Extension Screenshots
Download Messaging App Stealth Mode Extension CRX File
Download Messaging App Stealth Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A stealth mode for certain messaging app.
Extension Basic Information
Name | Messaging App Stealth Mode |
ID | neahcibhlbdhnfdbnjfjpfgnceaegemm |
Official URL | https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm |
Description | Stealth mode for a certain messaging app |
File Size | 38.71 KB |
Installation Count | 44 |
Current Version | 3.0 |
Last Updated | 2019-10-15 |
Publish Date | 2019-10-15 |
Developer | Oryan Moshe |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |