Examine source code of Quick Inspect Element

Inspect and view changes in Quick Inspect Element 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",
  "manifest_version": 3,
  "name": "Quick Inspect Element",
  "version": "1.1.0",
  "description": "Quickly inspect HTML elements with a simple mouse hover.",
  "icons": {
    "32": "images/icons/icon-32.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "action": {
    "default_icon": "images/icons/icon-32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "styles/content.scss"
      ],
      "js": [
        "scripts/vendor.js",
        "scripts/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "oauth2": {
    "client_id": "959348519275-0ppf2qf56gt11mu4lruubkh46cfgotd8.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkc5wOyorr1CS8qTmp6csRK7uoG710Td+1pQ8HuoZg5sik9FVmPR5FTG6vnlN5i8aOi50G7Lxx91ICa1E+/R4mioSxfTG6TXr8r4onxs2E3vzqijNReAsGGoGBpIhOjsSQe8jRLSzmOvUFqZdLemGVLKK6m46r9aLmRDJkiDyFLA+ASYMGqhxWO/V9mC7D5GBEeu/M0nITTialu/H+O8Aa6oDfJGQwZnbyMZsoBp9uGjQ5lAPD9sVF01fVZGnQOsClFm/2q+tJsnehaZi9qbt8sTkFX4CzDxQEC0NJ0+QO6l1uWidqDVYRLixbgR/OaRYuAfQhKH4idfIGM+RUnyJ7QIDAQAB"
}