Blur Images
Blur images from chats
What is Blur Images?
Blur Images is a Chrome extension developed by leonardodesantos, and its main feature is "Blur images from chats".
Extension Screenshots
Download Blur Images Extension CRX File
Download Blur Images extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Blur Images |
ID | jfgofbkegonfgfianjnmbiekmgahmbfl |
Official URL | https://chromewebstore.google.com/detail/blur-images/jfgofbkegonfgfianjnmbiekmgahmbfl |
Description | Blur images from chats |
File Size | 122 KB |
Installation Count | 2,441 |
Current Version | 5.4 |
Last Updated | 2020-07-13 |
Publish Date | 2020-05-24 |
Rating | 4.44/5 Total 25 Ratings |
Developer | leonardodesantos |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/" ] } |