Forum Alerts

Forum Alerts

Get alerts from your favorite communities (powered by XenForo).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Forum Alerts",
  "version": "1.0.2",
  "permissions": [
    "http://*/",
    "https://*/",
    "activeTab",
    "tabs",
    "storage",
    "alarms",
    "notifications"
  ],
  "description": "Get alerts from your favorite communities (powered by XenForo).",
  "background": {
    "scripts": [
      "jquery.min.js",
      "alerts.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ]
}