SwitchCase

SwitchCase

Switch selected text to all uppercase or all lowercase.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SwitchCase",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Switch selected text to all uppercase or all lowercase.",
  "icons": {
    "16": "src/img/16.png",
    "48": "src/img/48.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "offline_enabled": true,
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "src/js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "src/js/background.js"
    ]
  }
}