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 |
公式URL | 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 |
Eメール | [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" } } |