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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |