IT'S FOOTBALL

IT'S FOOTBALL

It automatically replaces 'SOCCER' with 'FOOTBALL'.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "IT'S FOOTBALL",
  "version": "2.5",
  "description": "It automatically replaces 'SOCCER' with 'FOOTBALL'.",
  "author": "Munad Hasan",
  "icons": {
    "128": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "Content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage"
  ]
}