Dark Mode for Google Chrome™

Dark Mode for Google Chrome™

It is a dark mode for all the browse. It darkens all the websites you visit so you can browse without straining your eyes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/welcome.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "js/main.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "css/universal.css"
      ],
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_application_description__",
  "homepage_url": "https://darkmode.freebusinessapps.net",
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon.png"
  },
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "offline_enabled": true,
  "options_page": "templates/options.html",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "short_name": "darkmode",
  "version": "3.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "css/*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "icons/icon.png",
    "default_popup": "templates/popup.html"
  }
}