Messaging App Stealth Mode
Stealth mode for a certain messaging app
什么是Messaging App Stealth Mode?
Messaging App Stealth Mode是由Oryan Moshe开发的Chrome扩展程序,该扩展的主要功能是“Stealth mode for a certain messaging app”。
扩展截图
下载Messaging App Stealth Mode扩展crx文件
下载Messaging App Stealth Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A stealth mode for certain messaging app.
扩展基本信息
名称 | Messaging App Stealth Mode |
ID | neahcibhlbdhnfdbnjfjpfgnceaegemm |
官方URL | https://chromewebstore.google.com/detail/messaging-app-stealth-mod/neahcibhlbdhnfdbnjfjpfgnceaegemm |
简介 | Stealth mode for a certain messaging app |
文件大小 | 38.71 KB |
安装次数 | 44 |
当前版本 | 3.0 |
更新时间 | 2019-10-15 |
上架时间 | 2019-10-15 |
开发者 | Oryan Moshe |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |