Dark Reader

Dark mode for every website. Take care of your eyes, use dark theme for night and daily browsing.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Dark Reader",
  "version": "4.9.60",
  "author": "Alexander Shutau",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "browser_action": {
    "default_title": "Dark Reader",
    "default_icon": {
      "19": "icons/dr_active_19.png",
      "38": "icons/dr_active_38.png"
    },
    "default_popup": "ui/popup/index.html"
  },
  "icons": {
    "16": "icons/dr_16.png",
    "48": "icons/dr_48.png",
    "128": "icons/dr_128.png"
  },
  "background": {
    "page": "background/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject/fallback.js",
        "inject/index.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "permissions": [
    "alarms",
    "contextMenus",
    "storage",
    "tabs",
    "theme",
    "<all_urls>"
  ],
  "optional_permissions": [],
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "__MSG_toggle_extension__"
    },
    "addSite": {
      "suggested_key": {
        "default": "Alt+Shift+A"
      },
      "description": "__MSG_toggle_current_site__"
    },
    "switchEngine": {
      "description": "__MSG_theme_generation_mode__"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{2ed60c16-ace5-46c8-b91e-add6d9b0977b}"
    }
  }
}