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란 무엇입니까?

IRCTC Alerter은(는) Rajesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to make IRCTC website less frustrating to use by alerting the user when the IRCTC page is completely loaded."입니다.

확장 프로그램 스크린샷

IRCTC Alerter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 IRCTC Alerter IRCTC Alerter
ID fgmplgibbofdmkbffmpckfgodfbdgbkc
공식 URL https://chrome.google.com/webstore/detail/irctc-alerter/fgmplgibbofdmkbffmpckfgodfbdgbkc
설명 A chrome extension to make IRCTC website less frustrating to use by alerting the user when the IRCTC page is completely loaded.
파일 크기 666 KB
설치 횟수 327
현재 버전 1.5
최근 업데이트 2014-03-28
출시 날짜 2014-03-28
평점 4.36/5 총 11 개의 평점
개발자 Rajesh
결제 유형 free
지원되는 언어 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"
    ]
}