Solarize the Web

Solarize the Web

Well not quite everything. This adds solarized light stylesheets to a few sites (hn, github, google, wikipedia, and the archlinux…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Solarize the Web",
  "version": "0.1",
  "short_name": "Add solarized to everything!",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "css/github.css"
      ]
    },
    {
      "matches": [
        "https://*.wikipedia.org/*",
        "https://wiki.archlinux.org/*"
      ],
      "css": [
        "css/mediawiki.css"
      ]
    },
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "css": [
        "css/google.css"
      ]
    },
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "css": [
        "css/hackernews.css"
      ]
    }
  ]
}