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ファイルをダウンロード
Night Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } ] } |