Examine source code of NerdeFocus

Inspect and view changes in NerdeFocus 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": "NerdeFocus",
  "version": "0.3.2",
  "manifest_version": 2,
  "description": "Quickly debug focus problems when testing a page for accessibility issues.",
  "homepage_url": "https://github.com/wizzyfx/nerdeFocusPlugIn",
  "devtools_page": "src/devtools/devtools.html",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "js": [
        "vendor/jquery-3.2.1.slim.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}