Word Swap!

Changes words on webpages to other words! Switch words or phrases on webpages, with another words or phrases! Have to…
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Word Swap!",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jq/jquery-1.11.1.min.js",
        "adlib.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "ga.js"
  ],
  "options_page": "options.html"
}