ROI-AI

ROI-AI

Candidate & Client Fetcher Tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ROI-AI",
  "description": "Candidate & Client Fetcher Tools",
  "version": "1.5.2",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "assets/images/logo.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Opens popup.html"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.jobadder.com/*",
        "*://*.roi-ai.app/*",
        "http://localhost/*"
      ],
      "js": [
        "src/background.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}