Extented ESO Forum

Extented ESO Forum

Simple plugin to extend the ESO forum.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Extented ESO Forum",
  "version": "0.1.3",
  "description": "Simple plugin to extend the ESO forum.",
  "homepage_url": "https://github.com/Skullfox/extented-eso-forum",
  "web_accessible_resources": [
    "jquery.min.js",
    "content.js",
    "css/*.css"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon/48.png",
    "default_popup": "options.html",
    "default_title": "Extended Eso Forum"
  },
  "content_scripts": [
    {
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content.js"
      ],
      "matches": [
        "https://forums.elderscrollsonline.com/*",
        "http://www.elderscrollsonline.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "https://live-services.elderscrollsonline.com/status/realms",
    "storage"
  ]
}