Dark Mode

Dark Mode

Switch on Dark Mode now. 100% Free Protect your eyes when you are using the computer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.0.0",
  "name": "__MSG_application_title__",
  "manifest_version": 2,
  "default_locale": "en_US",
  "short_name": "darkmode",
  "description": "Switch on Dark Mode now. 100% Free Protect your eyes when you are using the computer.",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "css/*.css"
  ],
  "homepage_url": "https://darkmode.freeonlineapps.net",
  "options_page": "templates/options.html",
  "offline_enabled": true,
  "icons": {
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_popup": "templates/popup.html"
  },
  "background": {
    "scripts": [
      "/notify/update-conf.js",
      "/notify/update.min.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "js/main.js"
      ]
    },
    {
      "all_frames": true,
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "css": [
        "css/universal.css"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}