Dark Mode View
Allows you to enable all websites to be dark mode to ease eye strain.
Apa itu Dark Mode View?
Dark Mode View adalah ekstensi Chrome yang dikembangkan oleh http://darkview.org, dan fitur utamanya adalah "Allows you to enable all websites to be dark mode to ease eye strain. ".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Dark Mode View
Unduh file ekstensi Dark Mode View dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.
Informasi Dasar Ekstensi
Nama | |
ID | ooliejnanmkmfamajdfidknhaklmiedd |
URL Resmi | https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd |
Deskripsi | Allows you to enable all websites to be dark mode to ease eye strain. |
Ukuran File | 20.61 KB |
Jumlah Instalasi | 5,870 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2021-03-30 |
Tanggal Publikasi | 2021-03-30 |
Penilaian | 4.50/5 Total 2 Penilaian |
Pengembang | http://darkview.org |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://darkview.org/ |
URL Halaman Bantuan | https://darkview.org/ |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Greg Henderson", "homepage_url": "https:\/\/darkview.org", "name": "Dark Mode View", "description": "Allows you to enable all websites to be dark mode to ease eye strain. ", "icons": { "128": "icon-128.png" }, "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "autotoggle.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Dark Mode Viewer", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ] } |