Messaging App Stealth Mode
Stealth mode for a certain messaging app
Co to jest Messaging App Stealth Mode?
Messaging App Stealth Mode to rozszerzenie Chrome opracowane przez Oryan Moshe, a jego główną funkcją jest „Stealth mode for a certain messaging app”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Messaging App Stealth Mode
Pobierz pliki rozszerzeń Messaging App Stealth Mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A stealth mode for certain messaging app.
Podstawowe informacje o rozszerzeniu
Nazwa | Messaging App Stealth Mode |
ID | neahcibhlbdhnfdbnjfjpfgnceaegemm |
Oficjalny URL | https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm |
Opis | Stealth mode for a certain messaging app |
Rozmiar pliku | 38.71 KB |
Liczba instalacji | 44 |
Aktualna Wersja | 3.0 |
Ostatnia Aktualizacja | 2019-10-15 |
Data Publikacji | 2019-10-15 |
Deweloper | Oryan Moshe |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |