Doom Scroller

Doom Scroller

Adds the HUD from DOOM and slowly kills you as you scroll

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Adds the HUD from DOOM and slowly kills you as you scroll",
  "manifest_version": 2,
  "name": "Doom Scroller",
  "version": "1.1.1",
  "homepage_url": "https://github.com/workeffortwaste/doom-scroller",
  "icons": {
    "128": "webext-res/icon.png"
  },
  "background": {
    "scripts": [
      "webext-res/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Doom Scroller",
    "default_icon": {
      "32": "webext-res/toolbar-icon32.png"
    }
  },
  "web_accessible_resources": [
    "doom-res/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "options_ui": {
    "page": "webext-res/options.html"
  }
}