Rally Attention Stream

Rally Attention Stream

The Mozilla Rally Attention Stream

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "The Mozilla Rally Attention Stream",
  "author": "Mozilla",
  "manifest_version": 2,
  "name": "Rally Attention Stream",
  "version": "0.4.7",
  "homepage_url": "https://github.com/mozilla-rally/rally",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "87.0"
    }
  },
  "options_ui": {
    "page": "public/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "idle",
    "webNavigation",
    "webRequest",
    "storage",
    "unlimitedStorage",
    "scripting",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*",
        "https://members.rally.mozilla.org/*"
      ],
      "js": [
        "dist/main.content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "incognito": "not_allowed"
}