{
  "manifest_version": 2,
  "name": "update",
  "browser_specific_settings": {
    "gecko": {
      "id": "update-postpone@example.com",
      "update_url": "https://example.org/tests/junit/update_manifest.json"
    }
  },
  "background": {
    "scripts": ["background.js"]
  },
  "version": "1.0",
  "description": "Adds a red border to all webpages matching example.com.",
  "content_scripts": [
    {
      "matches": ["*://*.example.com/*"],
      "js": ["borderify.js"]
    }
  ]
}
