Upper Case Detector

Upper Case Detector

Highlights all upper-cased text sections of the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Upper Case Detector",
  "short_name": "Upper Case Detector",
  "manifest_version": 2,
  "version": "1.5",
  "description": "Highlights all upper-cased text sections of the page",
  "author": "Cory Forsyth",
  "icons": {
    "19": "icon-19.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_title": "Upper Case Detector",
    "default_icon": {
      "19": "icon-19.png",
      "32": "icon-32.png",
      "48": "icon-48.png",
      "64": "icon-64.png",
      "128": "icon-128.png"
    }
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persisent": false
  }
}