fare-frenzy

fare-frenzy

Check the prices on the direct airline websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "homepage_url": "http://localhost:8080/",
  "description": "Check the prices on the direct airline websites",
  "default_locale": "en",
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "*://*/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "webRequest"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": {
      "38": "icons/38.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png",
        "img/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "0.2.0"
}