Examine source code of Prop 65 Detector

Inspect and view changes in Prop 65 Detector source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Prop 65 Detector",
  "version": "1.3",
  "description": "Checks webpages for California Proposition 65 warnings",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/package/16.png",
    "32": "icons/package/32.png",
    "48": "icons/package/48.png",
    "128": "icons/package/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/browser-action/light/loading.png"
    },
    "default_title": "Prop 65 Detector"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "css": [
        "inject.css"
      ],
      "js": [
        "lib/findAndReplaceDOMText.js",
        "inject.js"
      ]
    }
  ]
}