Upkey

Upkey

See how your resume matches with jobs before applying

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Upkey",
  "version": "0.0.3",
  "description": "See how your resume matches with jobs before applying",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "assets/images/icons/extension-icons/icon16.png",
      "24": "assets/images/icons/extension-icons/icon24.png",
      "32": "assets/images/icons/extension-icons/icon32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:4200/*",
      "https://v4.devupkey.net/*",
      "https://upkey.com/*"
    ]
  },
  "permissions": [
    "storage"
  ]
}