Pricewire

Pricewire

Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pricewire",
  "short_name": "PW",
  "description": "Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.",
  "version": "1.0.2",
  "manifest_version": 3,
  "homepage_url": "https://pricewire.io",
  "author": {
    "name": "Mohsin Ali",
    "url": "https://mohsinali.dev"
  },
  "background": {
    "service_worker": "js/sw.js"
  },
  "action": {
    "default_icon": {
      "24": "icons/24.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "64": "icons/64.png",
      "128": "icons/128.png",
      "256": "icons/256.png"
    }
  },
  "icons": {
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.priceline.com/relax/at/express/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/priceline.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.hotwire.com/hotels/details/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/hotwire.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.priceline.com/*",
        "https://www.hotwire.com/*"
      ],
      "resources": [
        "css/widget.css",
        "icons/*.png"
      ]
    }
  ],
  "host_permissions": [
    "https://*.google.com/*"
  ]
}