Romanian Software Hire CV Crawler

Romanian Software Hire CV Crawler

Import CVs automatically in Romanian Software's Hire Application

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Romanian Software Hire CV Crawler",
  "description": "Import CVs automatically in Romanian Software's Hire Application",
  "version": "1.2",
  "permissions": [
    "tabs",
    "storage",
    "http://www.ejobs.ro/company/show_cv_html.php?*",
    "http://www.bestjobs.ro/*",
    "http://www.hipo.ro/*",
    "http://localhost:9701/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.ejobs.ro/company/show_cv_html.php?*"
      ],
      "js": [
        "ejobs.js",
        "common.js"
      ]
    },
    {
      "matches": [
        "http://www.bestjobs.ro/*"
      ],
      "js": [
        "bestjobs.js",
        "common.js"
      ]
    },
    {
      "matches": [
        "http://www.tjobs.ro/vezi-cv-*"
      ],
      "js": [
        "tjobs.js",
        "common.js"
      ]
    },
    {
      "matches": [
        "http://www.infomunca.ro/ro-RO/CV/View?*"
      ],
      "js": [
        "infomunca.js",
        "common.js"
      ]
    },
    {
      "matches": [
        "http://www.myjob.ro/cv/*"
      ],
      "js": [
        "myjob.js",
        "common.js"
      ]
    },
    {
      "matches": [
        "http://www.hipo.ro/locuri-de-munca/angajator/vizualizareAplicare/*"
      ],
      "js": [
        "hipo.js",
        "common.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon.png",
    "button.css"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}