Rose Garden Forever

Rose Garden Forever

Corrects a common misspelling of Rose Garden Arena, home of the Portland Trail Blazers.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Rose Garden Forever",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "description": "Corrects a common misspelling of Rose Garden Arena, home of the Portland Trail Blazers.",
  "version": "1.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}