Southwest Flight Comparison Tool

Southwest Flight Comparison Tool

Compare Southwest flights and export data as a CSV

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Southwest Flight Comparison Tool",
  "version": "1.1",
  "description": "Compare Southwest flights and export data as a CSV",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.southwest.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "48": "icon48.jpg"
    }
  },
  "icons": {
    "48": "icon48.jpg"
  }
}