Inspect and view changes in Ticket Barcode Parser Extension 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": "Ticket Barcode Parser Extension",
"description": "Ticket Barcode Parser Extension",
"version": "0.0.6",
"manifest_version": 3,
"icons": {
"16": "icon.png",
"32": "icon.png",
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"128": "icon.png"
},
"default_popup": "index.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://tm.amosa.app/*"
],
"run_at": "document_start",
"js": [
"assets/barcode_amosa.js"
]
},
{
"matches": [
"https://verified-ticket.com/*",
"https://verified-tickets.com/*"
],
"run_at": "document_start",
"js": [
"assets/barcode_verified_ticket.js"
]
},
{
"matches": [
"https://downloadmyseats.com/*"
],
"run_at": "document_start",
"js": [
"assets/barcode_downloadmyseats.js"
]
},
{
"matches": [
"https://secure.tickets/*"
],
"run_at": "document_start",
"js": [
"assets/barcode_secure_tickets.js"
]
},
{
"matches": [
"https://presto.ticketmaster.com/*"
],
"run_at": "document_start",
"js": [
"assets/barcode_presto_tm.js"
]
},
{
"matches": [
"https://tmam.downloadmytickets.com/*"
],
"run_at": "document_start",
"js": [
"assets/barcode_downloadmytickets.js"
]
}
]
}