darkify
darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.
darkify란 무엇입니까?
darkify은(는) HeilerApps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it."입니다.
확장 프로그램 스크린샷
darkify 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The darkify extension will try to modify every website to a dark version of it. You can configure it to automatically run on a period of time, exclude some pages or manually start and stoping it. If you have any improvement ideas or bugs, please report them here: https://github.com/gheiler/darkify/issues Also if you want to contribute feel free to create a pull request. Enjoy! Gabriel
확장 프로그램 기본 정보
이름 | darkify |
ID | lchabmjccahchaflojonfbepjbbnipfc |
공식 URL | https://chromewebstore.google.com/detail/darkify/lchabmjccahchaflojonfbepjbbnipfc |
설명 | darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it. |
파일 크기 | 77.93 KB |
설치 횟수 | 318 |
현재 버전 | 0.2.2 |
최근 업데이트 | 2022-09-21 |
출시 날짜 | 2020-04-15 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | HeilerApps |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://gabriel.heiler.dev |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "darkify", "version": "0.2.2", "description": "darkify modifies all websites to a dark version. You can run it over a period of time, exclude pages or manually start and stop it.", "author": "Gabriel Heiler", "homepage_url": "https:\/\/gabriel.heiler.dev", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "activeTab", "declarativeContent", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/basics.css" ], "js": [ "js\/startscript.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/basics.css" ], "js": [ "js\/contentscript.js" ], "all_frames": true, "run_at": "document_idle" } ], "background": { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "*" ], "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "img\/darkify-16.png", "32": "img\/darkify-32.png", "48": "img\/darkify.png", "128": "img\/darkify-128.png" } }, "options_page": "options.html", "icons": { "16": "img\/darkify-16.png", "32": "img\/darkify-32.png", "48": "img\/darkify-48.png", "128": "img\/darkify-128.png" }, "web_accessible_resources": [ "css\/basics.css", "css\/extras.css" ], "manifest_version": 2 } |