Blur Images
Blur images from chats
Cos'è Blur Images?
Blur Images è un'estensione di Chrome sviluppata da leonardodesantos, e la sua funzione principale è "Blur images from chats".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Blur Images
Scarica i file di estensione Blur Images in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | jfgofbkegonfgfianjnmbiekmgahmbfl |
URL Ufficiale | https://chromewebstore.google.com/detail/blur-images/jfgofbkegonfgfianjnmbiekmgahmbfl |
Descrizione | Blur images from chats |
Dimensione del File | 122 KB |
Conteggio Installazioni | 2,441 |
Versione Corrente | 5.4 |
Ultimo Aggiornamento | 2020-07-13 |
Data di Pubblicazione | 2020-05-24 |
Valutazione | 4.44/5 Totale 25 Valutazioni |
Sviluppatore | leonardodesantos |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/" ] } |