Eagleanalytix Ticket Data Extension
Show seats and historial data for any ticketmaster, livenation, stubhub, vividseats, mlb, axs...
Co to jest Eagleanalytix Ticket Data Extension?
Eagleanalytix Ticket Data Extension to rozszerzenie Chrome opracowane przez eagleanalytix, a jego główną funkcją jest „Show seats and historial data for any ticketmaster, livenation, stubhub, vividseats, mlb, axs...”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Eagleanalytix Ticket Data Extension
Pobierz pliki rozszerzeń Eagleanalytix Ticket Data Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension is to check active ticket listings, counts and pricing from ticketmaster, stubhub, axs, vividseats, evenue, mpv and so on. It provides sales data of Stubhub and can see all sold listings. and it also provides count alert and ticket count compare based on same events in stubhub, ticketmaster and vividseats. We are continuously adding new features and new ticket websites to help our users.
Podstawowe informacje o rozszerzeniu
Nazwa | Eagleanalytix Ticket Data Extension |
ID | oegjgjmenakafanmngbflcfdlhdiedbb |
Oficjalny URL | https://chromewebstore.google.com/detail/eagleanalytix-ticket-data/oegjgjmenakafanmngbflcfdlhdiedbb |
Opis | Show seats and historial data for any ticketmaster, livenation, stubhub, vividseats, mlb, axs... |
Rozmiar pliku | 1.18 MB |
Liczba instalacji | 200 |
Aktualna Wersja | 3.5.63 |
Ostatnia Aktualizacja | 2024-03-06 |
Data Publikacji | 2021-10-20 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | eagleanalytix |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://eagleanalytix.com |
Adres URL Strony Polityki Prywatności | https://eagleanalytix.com |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Eagleanalytix Ticket Data Extension", "version": "3.5.63", "description": "Show seats and historial data for any ticketmaster, livenation, stubhub, vividseats, mlb, axs...", "manifest_version": 3, "icons": { "128": "assets\/icon-48x48.png", "16": "assets\/icon-48x48.png", "32": "assets\/icon-48x48.png", "48": "assets\/icon-48x48.png" }, "permissions": [ "activeTab", "storage", "scripting", "contextMenus" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": "assets\/icon-48x48.png", "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.stubhub.com\/*" ], "run_at": "document_start", "js": [ "assets\/code_stubhub.js" ] }, { "matches": [ "https:\/\/www.ticketmaster.com\/*", "https:\/\/concerts.livenation.com\/*", "https:\/\/www.ticketmaster.ca\/*", "https:\/\/concerts.livenation.ca\/*" ], "run_at": "document_start", "js": [ "assets\/code_ticketmaster.js" ] }, { "matches": [ "https:\/\/my.ticketmaster.com\/*" ], "run_at": "document_start", "js": [ "assets\/code_my_ticketmaster.js" ] }, { "matches": [ "https:\/\/www.vividseats.com\/*" ], "run_at": "document_start", "js": [ "assets\/code_vividseats.js" ] }, { "matches": [ "https:\/\/tix.axs.com\/*" ], "run_at": "document_start", "js": [ "assets\/code_axs.js" ] }, { "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" ] } ] } |