Chrome Forensic Assistant

Chrome Forensic Assistant

Allows quick access to find vehicle dimensions, stiffness coefficients, CDR data, and other tools!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Forensic Assistant",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Allows quick access to find vehicle dimensions, stiffness coefficients, CDR data, and other tools!",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Click here!",
    "default_icon": "icon128.png"
  },
  "background": {
    "page": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "https://ajax.googleapis.com/"
  ]
}