Image Blur Extension
A Chrome extension to blur images on web pages
Cos'è Image Blur Extension?
Image Blur Extension è un'estensione di Chrome sviluppata da manojsilag, e la sua funzione principale è "A Chrome extension to blur images on web pages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Image Blur Extension
Scarica i file di estensione Image Blur Extension 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
Are you concerned about your online privacy and tired of images on websites invading your personal space? Introducing Image Blur, your ultimate solution for taking control of your online visual experience. Image Blur seamlessly integrates with your Chrome browser to blur all images on the websites you visit. Whether you're on social media, news sites, or any other platform We understand that everyone has different preferences. That's why Image Blur allows you to customize the blur intensity. Choose the level of blur that suits your comfort level, from subtle to complete obscurity. You're in control. Easily toggle the extension on and off with a single click. When you want to enjoy high-resolution images, simply turn off Image Blur, and when you're concerned, turn it back on.
Informazioni di Base sull'Estensione
Nome | Image Blur Extension |
ID | njjgcapodcfiiofppomncilmenhgdmmc |
URL Ufficiale | https://chromewebstore.google.com/detail/image-blur-extension/njjgcapodcfiiofppomncilmenhgdmmc |
Descrizione | A Chrome extension to blur images on web pages |
Dimensione del File | 42.1 KB |
Conteggio Installazioni | 78 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-10-08 |
Data di Pubblicazione | 2023-10-08 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | manojsilag |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://manojsilag.github.io/image_blur_website/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Image Blur Extension", "version": "1.0", "description": "A Chrome extension to blur images on web pages", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "activeTab", "storage" ], "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_popup": "options.html", "default_icon": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "default_title": "Image Blur Extension" } } |