Rivals Board Enhancements

Rivals Board Enhancements

This extension adds a number of enhancements to the new rivals message board

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rivals Board Enhancements",
  "description": "This extension adds a number of enhancements to the new rivals message board",
  "version": "2.0.3",
  "icons": {
    "48": "icon.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "*://*.forums.rivals.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.forums.rivals.com/*"
      ],
      "js": [
        "document_end.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.forums.rivals.com/*"
      ],
      "css": [
        "forum_enhancements.css"
      ],
      "js": [
        "jquery.js",
        "document_start.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}