Messaging App Stealth Mode
Stealth mode for a certain messaging app
Wat is Messaging App Stealth Mode?
Messaging App Stealth Mode is een Chrome-extensie ontwikkeld door Oryan Moshe, en de belangrijkste functie is "Stealth mode for a certain messaging app".
Extensie Screenshots
Download het CRX-bestand van de extensie Messaging App Stealth Mode
Download Messaging App Stealth Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A stealth mode for certain messaging app.
Basisinformatie over de Extensie
Naam | Messaging App Stealth Mode |
ID | neahcibhlbdhnfdbnjfjpfgnceaegemm |
Officiële URL | https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm |
Beschrijving | Stealth mode for a certain messaging app |
Bestandsgrootte | 38.71 KB |
Aantal Installaties | 44 |
Huidige Versie | 3.0 |
Laatst Bijgewerkt | 2019-10-15 |
Publicatiedatum | 2019-10-15 |
Ontwikkelaar | Oryan Moshe |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |