Word Swap

Word Swap

This chrome extension allows you to set a word to always appear as a different word on a webpage! Users have used this app to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Word Swap",
  "version": "0.2.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_title": "Word Swap",
    "default_popup": "popup.html"
  }
}