Box Unchecker

Box Unchecker

Unchecks all check box list items on IGS Confluence pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Box Unchecker",
  "short_name": "Box Unchecker",
  "description": "Unchecks all check box list items on IGS Confluence pages.",
  "version": "1.0",
  "author": "David Yost",
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "css": [
        "plugin-style.css"
      ],
      "js": [
        "jquery.min.js",
        "content_script.js"
      ],
      "matches": [
        "https://igsenergy.atlassian.net/*"
      ]
    }
  ],
  "icons": {
    "16": "images/checkbox16.png",
    "32": "images/checkbox32.png",
    "48": "images/checkbox48.png",
    "128": "images/checkbox128.png"
  },
  "manifest_version": 2
}