BuyLo | Same Flight, Just Cheaper

BuyLo | Same Flight, Just Cheaper

At checkout, BuyLo finds you a lower price on the exact same flight.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BuyLo | Same Flight, Just Cheaper",
  "description": "At checkout, BuyLo finds you a lower price on the exact same flight.",
  "version": "0.0.1.2",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "global.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "logo48.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "https://api2.tripli.com/*"
  ],
  "web_accessible_resources": [
    "modules/*.js",
    "img/BuyLoLogo.png"
  ]
}