Sorry Tennessee

Sorry Tennessee

Removes instances of TN or Tennessee from most dropdown menus.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sorry Tennessee",
  "version": "1.3",
  "description": "Removes instances of TN or Tennessee from most dropdown menus.",
  "author": "Vince Picone",
  "icons": {
    "16": "sorry-16.png",
    "48": "sorry-48.png",
    "128": "sorry-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "SorryTennessee.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "devtools_page": "devtools.html",
  "homepage_url": "http://www.github.com/vpicone",
  "incognito": "spanning",
  "offline_enabled": true,
  "options_page": "options.html",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  }
}