iSmart Resume Exporter

iSmart Resume Exporter

This is plugin Export resume to iSmartRecruit Server.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "iSmart Resume Exporter",
  "version": "2.21.60",
  "short_name": "Gmail Plugin",
  "author": "Divyesh Kanzariya",
  "description": "This is plugin Export resume to iSmartRecruit Server.",
  "permissions": [
    "https://*/*",
    "https://mail.google.com/",
    "offscreen",
    "https://www.googleapis.com/*",
    "identity",
    "extension",
    "storage",
    "runtime",
    "identity.email",
    "https://accounts.google.com/*"
  ],
  "icons": {
    "32": "GmailPlugin.png",
    "38": "GmailPlugin.png",
    "48": "GmailPlugin.png"
  },
  "action": {
    "default_icon": "GmailPlugin.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dist/extension.js",
        "css/ik.css",
        "css/selectize.default.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*",
        "http://localhost:8080/RecWeb/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "dist/extension.js"
      ],
      "run_at": "document_end",
      "css": [
        "css/ik.css",
        "css/selectize.default.css"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*",
    "https://www.googleapis.com/*",
    "https://mail.google.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "manifest_version": 3
}