CAD Injection

CAD Injection

Useful for Fire Departments that have CAD access. This script will automatically login the user that is set in the options.

Additional files are visible only to premium users

manifest.json


{
  "author": "Jeffrey Buchbinder",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://cadview.qvec.org/*"
      ]
    }
  ],
  "description": "Useful for Fire Departments that have CAD access.  This script will automatically login the user that is set in the options.",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "id": "cmmkdplcmdejekpjjjjddinacjepedfa",
  "manifest_version": 2,
  "name": "CAD Injection",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.2",
  "web_accessible_resources": [
    "js/content.js",
    "js/options.js"
  ]
}