Parkingaccess.com

Parkingaccess.com

Enjoy parking lots open 24/7 with fast, free shuttle service - Plus upgrade amenities like Valet and Indoor Parking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Parkingaccess.com",
  "description": "Enjoy parking lots open 24/7 with fast, free shuttle service - Plus upgrade amenities like Valet and Indoor Parking.",
  "version": "1.1.1",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.aa.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline.js"
      ]
    },
    {
      "matches": [
        "*://*.united.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline-united.js"
      ]
    },
    {
      "matches": [
        "*://*.southwest.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline-southwest.js"
      ]
    },
    {
      "matches": [
        "*://*.delta.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline-delta.js"
      ]
    },
    {
      "matches": [
        "*://*.jetblue.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline-jetblue.js"
      ]
    },
    {
      "matches": [
        "*://*.alaskaair.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline-alaska.js"
      ]
    },
    {
      "matches": [
        "*://*.hawaiianairlines.com/*"
      ],
      "js": [
        "libs/jquery/jquery-3.6.0.min.js",
        "js/global.constants.js",
        "js/api.service.js",
        "js/parking.lots.builder.js",
        "airline-hawaii.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/global.constants.js",
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://cdn.jsdelivr.net; object-src 'self';"
}