Examine source code of TicketLab

Inspect and view changes in TicketLab source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TicketLab",
  "version": "0.0.2",
  "description": "Your snappy companion for Tickets!",
  "author": "ashish@ticketlab.com",
  "manifest_version": 3,
  "icons": {
    "16": "images/3D_icon.png",
    "48": "images/3D_icon.png",
    "128": "images/3D_icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/3D_icon.png",
      "48": "images/3D_icon.png",
      "128": "images/3D_icon.png"
    },
    "default_title": "TicketLab"
  },
  "options_page": "Extras/options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "scripting",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.telecharge.com/*",
        "*://tickets.telecharge.com/checkout/basket*",
        "*://*.ticketmaster.com/*/event/*",
        "*://telecharge.com/ticketsearchresults.aspx?ProductId*",
        "*://m.telecharge.com/*",
        "*://seatgeek.com/*",
        "*://tickets.broadwaydirect.com/checkout/basket*"
      ],
      "js": [
        "overlay.js",
        "scrapper.js"
      ],
      "css": [
        "contentStyles.css"
      ]
    }
  ]
}