Word Replacer Max

Word Replacer Max

Seamlessly replace text on any web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Word Replacer Max",
  "description": "Seamlessly replace text on any web page.",
  "homepage_url": "https://github.com/dan-lovelace/word-replacer-max",
  "manifest_version": 2,
  "icons": {
    "48": "assets/img/word-replacer-max-logo_64.png",
    "128": "assets/img/word-replacer-max-logo_128.png",
    "256": "assets/img/word-replacer-max-logo_256.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "assets/*"
  ],
  "version": "0.2.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "{702752b1-b39f-4a63-ba36-58a8303243d5}"
    }
  }
}