I am Darks
Turns the current page to a rough dark mode
什么是I am Darks?
I am Darks是由Dark Extension开发的Chrome扩展程序,该扩展的主要功能是“Turns the current page to a rough dark mode”。
扩展截图
下载I am Darks扩展crx文件
下载I am Darks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
You should install this extension if you have felt the pain in your eyes when opening a bright white website, especially at night, and you can do nothing but burn your eyes, but worry not, Darks is here to save your day! (your eyes!). When clicking on the "Become Dark" button a couple of CSS classes will be added on top of the current page to invert the color of the elements, so what is white will turn black and what is black will change to white, and so on, since these CSS classes do not belong to the website codebase, the dark effect will be gone when refreshing the page, unless the "Always be Dark" option is selected, in that case the classes are added automatically without the need of pressing again the "Become Dark" button. Join me, I am Darks... and you can be as well!
扩展基本信息
名称 | |
ID | bihlpiceelipmmeikjcnbldfdfncppjl |
官方URL | https://chromewebstore.google.com/detail/i-am-darks/bihlpiceelipmmeikjcnbldfdfncppjl |
简介 | Turns the current page to a rough dark mode |
文件大小 | 28.1 KB |
安装次数 | 14 |
当前版本 | 1.0.0 |
更新时间 | 2020-12-06 |
上架时间 | 2020-12-06 |
评分 | 5.00/5 共1次评分 |
开发者 | Dark Extension |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "I am Darks", "version": "1.0.0", "description": "Turns the current page to a rough dark mode", "permissions": [ "storage" ], "icons": { "16": "images\/darks__16.png", "32": "images\/darks__32.png", "48": "images\/darks__48.png", "128": "images\/darks__128.png" }, "browser_action": { "default_icon": "images\/darks__16.png", "default_popup": "popup.html", "default_title": "Darks" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/contentScript.js" ] } ] } |