MyRA Resume Parser

MyRA Resume Parser

MyRA Resume Parser is an application tool for Chrome to help extract information from online resumes of candidates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MyRA Resume Parser",
  "description": "MyRA Resume Parser is an application tool for Chrome to help extract information from online resumes of candidates.",
  "version": "0.0.0.8",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "myra.html"
  },
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon32.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "*://*.myra.work/*",
    "*://*.dev.myra.work/*",
    "http://*/*",
    "https://*/*",
    "*://*.localhost/*",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}