vTech Automation

vTech Automation

vTech automation will help user to automate such processes which requires human involvement.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "vTech Automation",
  "description": "vTech automation will help user to automate such processes which requires human involvement.",
  "version": "1.0.9",
  "icons": {
    "128": "vtech_icon_new.png"
  },
  "background": {
    "service_worker": "popup.js"
  },
  "action": {
    "default_icon": "vtech_icon_new.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://support.vtechsolution.com/helpdesk/WebObjects/Helpdesk.woa/?vT=*"
      ],
      "all_frames": true,
      "js": [
        "contentScript.js",
        "jquery.min.js"
      ]
    },
    {
      "matches": [
        "https://employers.indeed.com/*"
      ],
      "js": [
        "indeed.js"
      ]
    },
    {
      "matches": [
        "https://resumes.indeed.com/resume/*"
      ],
      "js": [
        "indeed.js"
      ]
    },
    {
      "matches": [
        "https://talenthirecls12.ceipal.com/job_postings/job_snapshot/*",
        "https://talenthirecls12.ceipal.com/job_postings/view_full_details_ext/*"
      ],
      "all_frames": true,
      "js": [
        "getrate.js",
        "jquery.min.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "webNavigation",
    "scripting",
    "tabs",
    "windows"
  ],
  "host_permissions": [
    "https://employers.indeed.com/",
    "*://*/*",
    "https://talenthirecls12.ceipal.com/job_postings/job_snapshot/*"
  ]
}