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 |
官方網址 | 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" ] } ] } |