Messaging App Stealth Mode
Stealth mode for a certain messaging app
Qu'est-ce que Messaging App Stealth Mode ?
Messaging App Stealth Mode est une extension Chrome développée par Oryan Moshe, et sa fonction principale est "Stealth mode for a certain messaging app".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Messaging App Stealth Mode
Téléchargez les fichiers d'extension Messaging App Stealth Mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
A stealth mode for certain messaging app.
Informations de Base sur l'Extension
Nom | Messaging App Stealth Mode |
ID | neahcibhlbdhnfdbnjfjpfgnceaegemm |
URL Officiel | https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm |
Description | Stealth mode for a certain messaging app |
Taille du Fichier | 38.71 KB |
Nombre d'Installations | 44 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2019-10-15 |
Date de Publication | 2019-10-15 |
Développeur | Oryan Moshe |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |