Night Mode
Enjoy the web in the new night colors and protect your eyes
Night Mode란 무엇입니까?
Night Mode은(는) SmartLink에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enjoy the web in the new night colors and protect your eyes"입니다.
확장 프로그램 스크린샷
Night Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Night Mode Version 2.0.0 - Fixed style issues after Instagram latest update. - Adopted native DarkTheme from the Instagram app. Enjoy ! This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.
확장 프로그램 기본 정보
이름 | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
공식 URL | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
설명 | Enjoy the web in the new night colors and protect your eyes |
파일 크기 | 42.85 KB |
설치 횟수 | 152,483 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2022-06-07 |
출시 날짜 | 2020-05-16 |
평점 | 3.84/5 총 129 개의 평점 |
개발자 | SmartLink |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Night Mode", "description": "Enjoy the web in the new night colors and protect your eyes", "version": "2.0.0", "author": "SmartLink", "browser_action": { "default_title": "Have a good day" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "activeTab", "storage" ], "background": { "page": "background.html", "persistent": true }, "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "web_accessible_resources": [ "nightmode.css" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |