The Old Reader Dark

The Old Reader Dark

Dark theme for The Old Reader.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Old Reader Dark",
  "short_name": "the-old-reader-dark",
  "version": "0.4",
  "description": "Dark theme for The Old Reader.",
  "homepage_url": "https://github.com/laedit/the-old-reader-dark",
  "permissions": [
    "*://theoldreader.com/*",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://theoldreader.com/*"
      ],
      "css": [
        "content_scripts/dark-theme.css"
      ],
      "js": [
        "content_scripts/inject-css.js"
      ]
    }
  ],
  "icons": {
    "64": "icons/icon.png",
    "128": "icons/icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}