Blur Images
Blur images from chats
什么是Blur Images?
Blur Images是由leonardodesantos开发的Chrome扩展程序,该扩展的主要功能是“Blur images from chats”。
扩展截图
下载Blur Images扩展crx文件
下载Blur Images扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Blur Images extension will blur out any sent or received images and videos until you select and click/hover them. This extension is useful for when you are at work or any other place where you might not want everyone around you to see your images and videos from your private conversations.
扩展基本信息
名称 | Blur Images |
ID | jfgofbkegonfgfianjnmbiekmgahmbfl |
官方URL | https://chromewebstore.google.com/detail/blur-images/jfgofbkegonfgfianjnmbiekmgahmbfl |
简介 | Blur images from chats |
文件大小 | 122 KB |
安装次数 | 2,441 |
当前版本 | 5.4 |
更新时间 | 2020-07-13 |
上架时间 | 2020-05-24 |
评分 | 4.44/5 共25次评分 |
开发者 | leonardodesantos |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Blur Images", "short_name": "Blur Images", "description": "Blur images from chats", "version": "5.4", "browser_action": { "default_popup": "index.html", "default_title": "Blur Images" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "css": [ "main.css" ], "js": [ "main.js" ], "matches": [ "http:\/\/web.whatsapp.com\/", "https:\/\/web.whatsapp.com\/" ] } ], "permissions": [ "https:\/\/web.whatsapp.com\/" ] } |