Indeed Company Location

Indeed Company Location

Check the location of a company on indeed when you right click

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Indeed Company Location",
  "version": "1.0",
  "description": "Check the location of a company on indeed",
  "icons": {
    "48": "icons/icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.indeed.com/*"
      ],
      "js": [
        "context-main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background-main.js"
    ],
    "matches": [
      "*://*.indeed.com/*"
    ],
    "include_globs": [
      "*://*.indeed.com/*"
    ],
    "persistent": false,
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "notifications",
    "tabs",
    "menus"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d88e8e98-a667-4a3e-abac-ff1b158b9e11}"
    }
  }
}