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 |
| 电子邮箱 | [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"
]
} | |