Flybooking

Flybooking

Flybooking web application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flybooking",
  "description": "Flybooking web application",
  "version": "1.0",
  "background": {
    "scripts": [
      "popup.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.flybooking.com/*",
        "http://flybookingst.caxita.ca/*",
        "http://localhost:8555/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "img/favicon.png"
  }
}