Word Swap!

Word Swap!

Changes words on webpages to other words! Switch words or phrases on webpages, with another words or phrases! Have to…

Merlin
Additional files are visible only to premium users

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"
}