Shows on Sale Price Map Tool

At-a-glance summary of tickets remaining for any Ticketmaster or LiveNation show.

Shows on Sale Price Map Tool là gì?

Shows on Sale Price Map Tool là một tiện ích mở rộng Chrome được phát triển bởi Shows On Sale, và tính năng chính của nó là "At-a-glance summary of tickets remaining for any Ticketmaster or LiveNation show.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shows on Sale Price Map Tool

Tải xuống các tệp mở rộng Shows on Sale Price Map Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension provides additional insight into the remaining available seats for almost any Ticketmaster or LiveNation show.

After visiting the seat selection view for a show, this extension will aggregate all the unpurchased seats, and display them in an easy-to-read legend on the side of screen.

The extension will update the seat selection view to color code seats by their price, so users can quickly see which seats are which prices.

Users can quickly filter the legend by ticket types.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shows on Sale Price Map Tool Shows on Sale Price Map Tool
ID ikkjgfldinlccihmgbkdmlfomailgoma
URL Chính Thức https://chromewebstore.google.com/detail/shows-on-sale-price-map-t/ikkjgfldinlccihmgbkdmlfomailgoma
Mô tả At-a-glance summary of tickets remaining for any Ticketmaster or LiveNation show.
Kích Thước Tệp 266 KB
Số Lần Cài Đặt 662
Phiên Bản Hiện Tại 1.5.18
Cập Nhật Lần Cuối 2024-02-19
Ngày Phát Hành 2022-08-13
Nhà Phát Triển Shows On Sale
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.showsonsale.com
URL Trang Chính Sách Bảo Mật https://www.showsonsale.com/terms
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.5.18.0",
    "version_name": "1.5.18",
    "description": "At-a-glance summary of tickets remaining for any Ticketmaster or LiveNation show.",
    "name": "Shows on Sale Price Map Tool",
    "action": {
        "default_icon": {
            "16": "images\/sos\/sos_pm_icon-128.png"
        },
        "default_title": "Shows On Sale Price Map Tool",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/sos\/sos_pm_icon-32.png",
        "32": "images\/sos\/sos_pm_icon-32.png",
        "48": "images\/sos\/sos_pm_icon-64.png",
        "128": "images\/sos\/sos_pm_icon-128.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost:*\/*",
            "https:\/\/preprod.showsonsale.com\/*",
            "https:\/\/www.showsonsale.com\/*"
        ]
    },
    "permissions": [
        "storage",
        "activeTab",
        "alarms"
    ],
    "incognito": "spanning",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.ticketmaster.com\/*",
                "https:\/\/www.ticketmaster.ca\/*",
                "https:\/\/concerts.livenation.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/jquery-ui.min.js",
                "initialize.js"
            ],
            "css": [
                "css\/root_colors.css",
                "css\/legend.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*",
                "js\/*",
                "images\/*",
                "elements\/*",
                "css\/root_colors.css",
                "css\/legend.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "run_at": "document_start",
        "js": [
            "axios.min.js"
        ]
    }
}