PCRecruiter Google Voice Plugin

PCRecruiter Google Voice Plugin

This extension allows access to Google Voice using PCRecruiter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PCRecruiter Google Voice Plugin",
  "description": "This extension allows access to Google Voice using PCRecruiter.",
  "version": "2.0.0",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "scripting",
    "nativeMessaging"
  ],
  "host_permissions": [
    "https://voice.google.com/",
    "https://*.pcrecruiter.net/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "phone.png",
    "48": "phone.png",
    "128": "phone.png"
  },
  "action": {
    "default_title": "PCR_Google_Voice",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.pcrecruiter.net/*"
      ],
      "css": [
        "extension.css"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "voicex.js"
      ]
    }
  ],
  "manifest_version": 3
}