MeetSelect Benefit Notification

MeetSelect Benefit Notification

The SELECT Chrome Extensions notifies SELECT Members anytime they're on a benefits partner website and directs them to our…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://*.meetselect.com/*"
    ],
    "accepts_tls_channel_id": false
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.6.0.min.js",
        "contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "description": "The SELECT Chrome Extensions notifies SELECT Members anytime they're on a benefits partner website and directs them to our…",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon_16.png",
      "48": "icon_48.png",
      "128": "icon_128.png"
    },
    "default_title": "Show Benefit"
  },
  "manifest_version": 3,
  "name": "MeetSelect Benefit Notification",
  "host_permissions": [
    "*://meetselect.com/api/extension/benefits"
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.8",
  "web_accessible_resources": [
    {
      "resources": [
        "/images/icon.png",
        "logo_white.png",
        "select_card_without_chip.png",
        "benefits.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}