Gears of War 4 Forums

Gears of War 4 Forums

Adds the 'Forums' option back into the main menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gears of War 4 Forums",
  "short_name": "Gears4 Forums",
  "version": "1.0.1",
  "description": "Adds the 'Forums' option back into the main menu.",
  "icons": {
    "48": "img/forums_tile48.png",
    "128": "img/forums_tile128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gearsofwar.com/*"
      ],
      "js": [
        "content/forums.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "web_accessible_resources": [
    "styles/forums.css"
  ]
}