Resume Extract

Resume Extract

Fetches resume details

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Resume Extract",
  "manifest_version": 2,
  "description": "Fetches resume details",
  "version": "1.0",
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "downloads",
    "downloads.open"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Extract Resume from current tab",
    "default_popup": "resumeform.html",
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "background.js"
      ]
    }
  ]
}