E-Staff plugin for Google Chrome

E-Staff plugin for Google Chrome

Allows loading CVs from web page to E-Staff with single click.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "default_locale": "ru",
  "version": "5.0.0.7",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "pict/estaff_16.png",
    "32": "pict/estaff_32.png",
    "48": "pict/estaff_48.png",
    "128": "pict/estaff_16.png"
  },
  "permissions": [
    "nativeMessaging",
    "webNavigation",
    "notifications",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "pict/estaff_16.png",
      "32": "pict/estaff_32.png",
      "48": "pict/estaff_48.png",
      "128": "pict/estaff_16.png"
    },
    "default_title": "__MSG_default_action_title__"
  },
  "options_page": "settings.htm",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}