Image Blur Extension
A Chrome extension to blur images on web pages
什麼是Image Blur Extension?
Image Blur Extension是由manojsilag開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to blur images on web pages”。
擴展截圖
下載Image Blur Extension擴展crx文件
下載Image Blur Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Image Blur Extension |
ID | njjgcapodcfiiofppomncilmenhgdmmc |
官方網址 | https://chromewebstore.google.com/detail/image-blur-extension/njjgcapodcfiiofppomncilmenhgdmmc |
簡介 | A Chrome extension to blur images on web pages |
檔案大小 | 42.1 KB |
安裝次數 | 78 |
目前版本 | 1.0 |
更新時間 | 2023-10-08 |
上架時間 | 2023-10-08 |
評分 | 5.00/5 共 1 次評分 |
開發者 | manojsilag |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://manojsilag.github.io/image_blur_website/ |
支援的語言 | 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" } } |