Random Homestuck

Random Homestuck

Did you think Homestuck was confusing enough?? Just you wait.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Random Homestuck",
  "version": "1.0",
  "description": "Did you think Homestuck was confusing enough?? Just you wait.",
  "icons": {
    "48": "icons/rh-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.homestuck.com/story*"
      ],
      "js": [
        "randomize.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "permissions": [
    "storage",
    "tabs"
  ]
}