Smart Words

Smart Words

This extension grows your vocabulary by automatically replacing simple words with SAT/GRE words that mean the same thing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smart Words",
  "short_name": "Smart Words",
  "description": "This extension grows your vocabulary by automatically replacing simple words with SAT/GRE words that mean the same thing.",
  "version": "1.0",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "Smart Words"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*.google.com/*"
      ],
      "js": [
        "ga-config.js",
        "ga.js",
        "jquery-1.10.2.min.js",
        "lexer.js",
        "lexicon.js_",
        "POSTagger.js",
        "data.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}