BC Parks Automation

BC Parks Automation

This addon helps to catch and reserve the camping spot on BC Parks website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "BC Parks Automation",
  "description": "Availability notifications and automatic cart reservation of BC Parks Campsites",
  "version": "1.1.0",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "BC Parks Automation",
    "default_icon": {
      "48": "logo48.png",
      "96": "logo96.png"
    }
  },
  "icons": {
    "48": "logo48.png",
    "96": "logo96.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://camping.bcparks.ca/*",
        "*://reservation.pc.gc.ca/*",
        "*://washington.goingtocamp.com/*"
      ],
      "js": [
        "contentStorage.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{60fa6492-c56d-4014-9725-c7eaec31427c}"
    }
  }
}