Examine source code of Leading2Lean Chrome Extension

Inspect and view changes in Leading2Lean Chrome Extension 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": "Leading2Lean Chrome Extension",
  "version": "2.2.14",
  "description": "Leading2Lean Chrome Extension",
  "options_ui": {
    "page": "src/pages/options/index.html"
  },
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "chrome_url_overrides": {
    "newtab": "src/pages/newtab/index.html"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.leading2lean.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "contentStyle.css"
      ]
    },
    {
      "matches": [
        "https://*.leading2lean.com/dashboards/l2l_lineside_display/"
      ],
      "js": [
        "src/pages/content/index.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*.leading2lean.com/*",
    "https://tro-lesctprod.eu.autoliv.int/*",
    "https://tro-lesamprod.eu.autoliv.int/*",
    "https://bki-lesamprod.eu.autoliv.int/*",
    "https://apa-lesamprod.eu.autoliv.int/*",
    "http://10.71.9.11/*"
  ],
  "devtools_page": "src/pages/devtools/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "contentStyle.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ]
}