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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |