Webfold

Webfold

Webfold - navigate directly to hotel pages on brand.com and third party sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Webfold",
  "description": "Webfold - navigate directly to hotel pages on brand.com and third party sites.",
  "omnibox": {
    "keyword": "wf"
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "dom.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "arrays.js",
      "jquery.js",
      "dom.js"
    ]
  },
  "version": "3.5",
  "minimum_chrome_version": "9",
  "manifest_version": 2
}