OfficeCheck

OfficeCheck

Used to alert users when the specific fields in Amadeus are not correct

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OfficeCheck",
  "description": "Used to alert users when the specific fields in Amadeus are not correct",
  "version": "1.0.0",
  "action": {
    "default_icon": "images/icon-16x16.png",
    "default_title": "OfficeCheck"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "popup.html"
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "sidePanel"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://tc235.resdesktop.altea.amadeus.com/*"
      ],
      "js": [
        "js/webpageContext.js"
      ],
      "css": [
        "css/webpageContext.css"
      ]
    }
  ],
  "commands": {
    "open_alert": {
      "suggested_key": {
        "default": "Ctrl+S",
        "mac": "Ctrl+S"
      },
      "description": "Open the alert"
    }
  },
  "icons": {
    "16": "images/icon-16x16.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/background.png",
        "images/alert.png",
        "images/icon-16x16.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}