HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
HN Dark Mode란 무엇입니까?
HN Dark Mode은(는) Innovative Computer Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a dark theme for Hacker news (news.ycombinator.com)."입니다.
확장 프로그램 스크린샷
HN Dark Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Dark Mode can be configured to be always on or to match the operating system's dark/light theme. This extension only runs on the Hacker News site. It will not collect or transmit ANY of your browsing activity.
확장 프로그램 기본 정보
이름 | HN Dark Mode |
ID | abpjflhoidbeaacggmdjoahiakcledna |
공식 URL | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
설명 | Adds a dark theme for Hacker news (news.ycombinator.com). |
파일 크기 | 169 KB |
설치 횟수 | 56 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2022-04-07 |
출시 날짜 | 2022-03-04 |
개발자 | Innovative Computer Software |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://icsusa.com/public/hndarkmode.html |
도움말 페이지 URL | https://icsusa.com/public/hndarkmode.html |
개인정보 보호 정책 페이지 URL | https://www.icsusa.com/public/absoluteprivacy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "1.0.3", "icons": { "48": "images\/HackerNewsColor-48.png", "96": "images\/HackerNewsColor-96.png", "128": "images\/HackerNewsColor-128.png", "256": "images\/HackerNewsColor-256.png", "512": "images\/HackerNewsColor-512.png" }, "background": { "service_worker": "background.js", "_scripts": [ "background.js" ], "_persistent": false }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "style.css" ], "matches": [ "*:\/\/news.ycombinator.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |