Examine source code of Blokr

Inspect and view changes in Blokr 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": "Blokr",
  "description": "Description",
  "version": "0.0.7",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "thirdparty/jquery.min.js",
        "thirdparty/jquery-ui.min.js",
        "content/address_checker.js",
        "content/page_context.js",
        "content/main.js"
      ],
      "css": [
        "content/styles.css",
        "thirdparty/jquery-ui.min.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background/page_context.js"
  },
  "action": {
    "default_popup": "popup/page_summary.html"
  }
}