Chat Privacy - Beta
We will blur your chat if you don't want to be seen
Chat Privacy - Betaとは何ですか?
Chat Privacy - Betaはrub1ccによって開発されたChromeの拡張機能で、その主な機能は「We will blur your chat if you don't want to be seen」です。
拡張機能のスクリーンショット
Chat Privacy - Beta拡張機能のCRXファイルをダウンロード
Chat Privacy - Beta拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension can help you to blur your private chat in Telegram and Whatsapp web 拡張機能の基本情報
| 名前 | |
| ID | ibplklenbaicogjbaimboaopngeoeofh |
| 公式URL | https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh |
| 説明 | We will blur your chat if you don't want to be seen |
| ファイルサイズ | 16.14 KB |
| インストール数 | 48 |
| 現在のバージョン | 0.0.2 |
| 最終更新日 | 2022-08-10 |
| 公開日 | 2022-08-07 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | rub1cc |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chat Privacy - Beta",
"version": "0.0.2",
"manifest_version": 3,
"description": "We will blur your chat if you don't want to be seen",
"action": {
"browser_style": true,
"default_popup": "popup\/popup.html",
"default_title": "Chat Privacy",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/web.telegram.org\/*"
],
"js": [
"init-tele.js"
],
"css": [
"style.css"
]
},
{
"matches": [
"*:\/\/web.whatsapp.com\/*"
],
"js": [
"init-wa.js"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
{
"matches": [
"*:\/\/web.telegram.org\/*",
"*:\/\/web.whatsapp.com\/*"
],
"resources": [
"css\/lastMessages.css",
"css\/conversations.css",
"css\/usernames.css",
"css\/profilePictures.css",
"css\/wa\/lastMessages.css",
"css\/wa\/conversations.css",
"css\/wa\/usernames.css",
"css\/wa\/profilePictures.css"
]
}
],
"host_permissions": [
"*:\/\/web.telegram.org\/*",
"*:\/\/web.whatsapp.com\/*"
],
"permissions": [
"storage",
"tabs",
"scripting"
]
} | |