Examine source code of Industry Index

Inspect and view changes in Industry Index 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": "Industry Index",
  "manifest_version": 3,
  "version": "0.0.0.1",
  "version_name": "0.0.0.1-C",
  "description": "The Industry Index Extension for Google Chrome",
  "icons": {
    "128": "Images/Logoshanko.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.indeed.com/*",
    "https://*.indeed.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "Images/Logoshanko.png",
        "dat.xml",
        "ext.css"
      ],
      "matches": [
        "https://*.indeed.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "Industry Index",
    "default_icon": "Images/Logoshanko.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.indeed.com/*"
      ]
    }
  ]
}