Examine source code of Kumquat

Inspect and view changes in Kumquat 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
{
  "name": "Kumquat",
  "version": "0.2",
  "description": "Autofill job applications with one click",
  "permissions": [
    "contextMenus",
    "tabs",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js",
      "config.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.myworkdayjobs.com/*",
        "https://boards.greenhouse.io/*",
        "https://jobs.lever.co/*",
        "https://*.taleo.net/*"
      ],
      "run_at": "document_end",
      "css": [
        "style.css"
      ],
      "js": [
        "content.js",
        "resumePopup.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "index.html",
    "*.png",
    "Roboto-Regular.ttf"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "kumquat16.png",
    "48": "kumquat48.png",
    "128": "kumquat128.png"
  },
  "browser_action": {
    "default_icon": "kumquat16.png",
    "default_popup": "index.html"
  }
}