IRCTC Alerter

A chrome extension to make IRCTC website less frustrating to use by alerting the user when the IRCTC page is completely loaded.

IRCTC Alerter là gì?

IRCTC Alerter là một tiện ích mở rộng Chrome được phát triển bởi Rajesh, và tính năng chính của nó là "A chrome extension to make IRCTC website less frustrating to use by alerting the user when the IRCTC page is completely loaded.".

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

Tải xuống tệp CRX của tiện ích mở rộng IRCTC Alerter

Tải xuống các tệp mở rộng IRCTC Alerter 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

                        Now you can go to other tabs while using IRCTC without being worried about being unaware of IRCTC getting loaded and you getting session timed out because you will be alerted with sound and flashing a tab icon.

A chrome extension to make online train ticket booking on IRCTC website less frustrating. IRCTC website can unbearably slow and unresponsive at peak load conditions. IRCTC also has small session time out period so if the user wanders to other tabs while waiting for the page to load, chances of being timed out  very high. IRCTC Alerter addresses these issues by alerting the user when the IRCTC page is completely loaded by playing a sound and changing the tab icon of the site to red bulb. The sound stops and the original tab icon is displayed when the user returns to the IRCTC tab. The extension remains inactive if the user remains on the IRCTC tab, It gets into action only when the user goes to other browser tabs while IRCTC site is loading a page.
The extension does not have much of an UI, so I have added a screen capture video to show how it works.                    

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

Tên IRCTC Alerter IRCTC Alerter
ID fgmplgibbofdmkbffmpckfgodfbdgbkc
URL Chính Thức https://chrome.google.com/webstore/detail/irctc-alerter/fgmplgibbofdmkbffmpckfgodfbdgbkc
Mô tả A chrome extension to make IRCTC website less frustrating to use by alerting the user when the IRCTC page is completely loaded.
Kích Thước Tệp 666 KB
Số Lần Cài Đặt 327
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2014-03-28
Ngày Phát Hành 2014-03-28
Đánh Giá 4.36/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Rajesh
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IRCTC Alerter",
    "version": "1.5",
    "description": "A chrome extension to make IRCTC website less frustrating to use by alerting the user when the IRCTC page is completely loaded.",
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.irctc.co.in\/*",
                "https:\/\/jp.irctc.co.in\/*"
            ],
            "js": [
                "BabelExt.js",
                "jquery-1.11.0.min.js",
                "support.js",
                "extension.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "red_bulb_icon.png",
        "railroad_crossing_bell.mp3",
        "IRCTC-helper_logo_big.png",
        "irctc_favicon.ico",
        "bird_blue_16.png"
    ]
}