Illumify

Illumify

Dark theme for every website. Care your eyes, use Dark Reader for night and daily browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Illumify",
  "version": "1.0.4",
  "author": "MU Senior Design",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'sha256-uQgNhYU8Ypo1navfrIQYXrn9+llmYNpu45iovAtfn3A=' http://localhost; object-src 'self'",
  "browser_action": {
    "default_title": "Illumify",
    "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": {
    "persistent": true,
    "page": "background/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject/index.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "permissions": [
    "fontSettings",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "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__"
    }
  }
}