Resume Analyser

Resume Analyser

Summarize information about resumes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Resume Analyser",
  "description": "Summarize information about resumes",
  "version": "1.0.1",
  "action": {
    "default_popup": "index.html",
    "default_title": "Analyze"
  },
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    }
  ]
}