AirSort

AirSort

Force show the total price for an Airbnb stay and sort by lowest cost

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AirSort",
  "version": "1.6",
  "description": "Force show the total price for an Airbnb stay and sort by lowest cost",
  "icons": {
    "16": "ico/16.png",
    "48": "ico/48.png",
    "128": "ico/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.airbnb.com/*"
      ],
      "js": [
        "jquery.js",
        "init.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "index.js"
    ]
  },
  "browser_action": {
    "default_title": "AirSort",
    "default_icon": "ico/16.png"
  },
  "permissions": [
    "tabs",
    "*://*.airbnb.com/*",
    "http://*/",
    "https://*/",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "notifications"
  ]
}