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 |
| Eメール | [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:\/\/*\/*"
]
} | |