Image Dimmer
Dim images on the page while using a dark reader or dark mode
什么是Image Dimmer?
Image Dimmer是由09 Labs开发的Chrome扩展程序,该扩展的主要功能是“Dim images on the page while using a dark reader or dark mode”。
扩展截图
下载Image Dimmer扩展crx文件
下载Image Dimmer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Image Dimmer reduces the brightness of images when you are browsing the internet in dark mode making reading much more comfortable. Simply hover over a dimmed image to view brighten it.
扩展基本信息
名称 | |
ID | hmjfhbkkkepekaoeofmapchghbmonbbf |
官方URL | https://chrome.google.com/webstore/detail/image-dimmer/hmjfhbkkkepekaoeofmapchghbmonbbf |
简介 | Dim images on the page while using a dark reader or dark mode |
文件大小 | 21.27 KB |
安装次数 | 89 |
当前版本 | 0.1.0 |
更新时间 | 2020-07-04 |
上架时间 | 2020-07-04 |
评分 | 3.60/5 共5次评分 |
开发者 | 09 Labs |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image Dimmer", "version": "0.1.0", "description": "Dim images on the page while using a dark reader or dark mode", "content_scripts": [ { "js": [ "js\/mute.js" ], "matches": [ "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "images\/image-mute-128.png", "default_title": "Image Dimmer", "default_popup": "index.html" }, "icons": { "16": "images\/image-mute-16.png", "48": "images\/image-mute-48.png", "128": "images\/image-mute-128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "commands": { "toggle-image-dimmer": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A", "windows": "Ctrl+Shift+A", "chromeos": "Ctrl+Shift+A", "linux": "Ctrl+Shift+A" }, "description": "Toggle Image Dimmer" }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+H", "mac": "Command+Shift+H", "chromeos": "Ctrl+Shift+H", "linux": "Ctrl+Shift+H" } } }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |