Apollo

Apollo

Gives visibility to other applications within Salesforce, thereby unifying and consolidating Sales Rep operations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Apollo",
  "version": "1.0.8",
  "description": "Gives visibility to other applications within Salesforce, thereby unifying and consolidating Sales Rep operations",
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://indeed.lightning.force.com/*/*",
    "https://meangreen-backend.sandbox.indeed.net/api/*",
    "https://meangreen-backend.sandbox.qa.indeed.net/api/*",
    "https://aai-universal-api.sandbox.qa.indeed.net/api/*",
    "https://aai-universal-api.sandbox.indeed.net/api/*",
    "https://aai-universal-api.sandbox.indeed.net/*",
    "https://aai-universal-api.sandbox.qa.indeed.net/*",
    "https://evo-jobs-info.sandbox.indeed.net/api/v1/*",
    "https://evo-jobs-info.sandbox.qa.indeed.net/api/v1/*",
    "http://localhost/*",
    "https://localhost/*"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "assets/icons/icon-32.png"
  },
  "icons": {
    "16": "assets/icons/icon-16.png",
    "19": "assets/icons/icon-19.png",
    "32": "assets/icons/icon-32.png",
    "38": "assets/icons/icon-38.png",
    "48": "assets/icons/icon-48.png",
    "128": "assets/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://indeed.lightning.force.com/*/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle17158150304.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "assets/icons/*.png"
      ],
      "matches": [
        "https://indeed.lightning.force.com/*"
      ]
    }
  ]
}