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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |