Easy Slot Booking - USA (CGI)

Easy Slot Booking - USA (CGI)

Easy Slot booking is a chrome extension helps you to book your USA visa slot by automating the process.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Slot Booking - USA (CGI)",
  "short_name": "ESB-USA-CGI",
  "description": "Easy Slot booking is a chrome extension helps you to book your USA visa slot by automating the process.",
  "version": "4.0.6",
  "manifest_version": 3,
  "homepage_url": "https://easyslotbooking.com/",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Book the slot…",
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png",
      "64": "icon-64.png",
      "128": "icon-128.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.secure.force.com/*",
        "*://*.my.salesforce-sites.com/*",
        "*://portal.ustraveldocs.com/*",
        "*://*.usvisascheduling.com/*",
        "*://*.b2clogin.com/*",
        "*://*.atlasauth.b2clogin.com/*"
      ],
      "js": [
        "reportContentScript.js",
        "reportContentScriptV2.js"
      ]
    },
    {
      "matches": [
        "*://*.easyslotbooking.com/*"
      ],
      "js": [
        "getToken.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*.easyslotbooking.com/*",
    "*://*.usvisascheduling.com/*"
  ],
  "permissions": [
    "alarms",
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "background"
  ]
}