Homestuck Night Theme

Homestuck Night Theme

Changes the colors of homestuck, homestuck2, and mspfa for easy night reading. To turn it on or off just press the icon in the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Homestuck Night Theme",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://www.homestuck.com/*",
        "https://homestuck2.com/*",
        "https://mspfa.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "permissions": [
    "storage"
  ]
}