HRS Plug-in: Hotel Booking Experience

HRS Plug-in: Hotel Booking Experience

This plug-in was designed to improve the corporate travel search and book experience in your company's Online Booking Tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_fullName__",
  "short_name": "hrs_ext",
  "version": "1.0.26",
  "default_locale": "en",
  "description": "__MSG_Description__",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "./js/vendor.js",
        "./js/content.js",
        "./js/inject.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/icons/hrslogo/16x16.png",
    "32": "/icons/hrslogo/32x32.png",
    "48": "/icons/hrslogo/48x48.png",
    "128": "/icons/hrslogo/128x128.png"
  },
  "host_permissions": [
    "https://*.hrs.com/*"
  ],
  "background": {
    "service_worker": "./js/background.js",
    "type": "module"
  },
  "action": {
    "default_title": "HRS helper",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/icons/hrslogo/16x16.png",
      "32": "/icons/hrslogo/32x32.png",
      "48": "/icons/hrslogo/48x48.png",
      "128": "/icons/hrslogo/128x128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "content.css",
        "/js/document.js",
        "/js/matomo.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; img-src 'self';"
  },
  "manifest_version": 3
}