Book My Show Alert

Get alert for ticket bookings instantly.

Book My Show Alertคืออะไร?

Book My Show Alert เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sabalaji09 และคุณลักษณะหลักของมันคือ "Get alert for ticket bookings instantly."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Book My Show Alert

ดาวน์โหลดไฟล์ส่วนขยาย Book My Show Alert ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Get your tickets booked before immediately after bookings get opened. Get alerts for the movies or events that is yet to be updated in the book my show. Once you install the add on it will appear on the top right corner of the browser. After installing it get to the book my show web page and enter the movie name and set the reminder.

      The add on will refresh the web page for every 5 seconds and check for the movie and sends you a desktop notification. This is the beta version and the updated version will be released soon with more features.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Book My Show Alert Book My Show Alert
ID idolbjdfohiijmghflneddjhpbakhcof
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/book-my-show-alert/idolbjdfohiijmghflneddjhpbakhcof
คำอธิบาย Get alert for ticket bookings instantly.
ขนาดไฟล์ 249 KB
จำนวนการติดตั้ง 136
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2019-10-23
วันที่เผยแพร่ 2019-10-23
คะแนน 2.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา sabalaji09
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Balaji S A",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "bms2.png",
        "default_popup": "popup.html"
    },
    "description": "Get alert for ticket bookings instantly.",
    "manifest_version": 2,
    "name": "Book My Show Alert",
    "short_name": "BMS alert",
    "permissions": [
        "notifications",
        "https:\/\/in.bookmyshow.com\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/in.bookmyshow.com\/*"
            ],
            "js": [
                "cont.js"
            ]
        }
    ],
    "version": "0.1",
    "web_accessible_resources": [
        "note.mp3"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}