Kumquat

Kumquat

Autofill job applications with one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Kumquat",
  "version": "0.4",
  "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"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "popup.html",
    "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": "popup.html"
  },
  "options_page": "index.html"
}