IRCTC Tatkal Helper

Helps you get a confirmed tatkal ticket by automating the form fill-up

IRCTC Tatkal Helper란 무엇입니까?

IRCTC Tatkal Helper은(는) Abhinav Srivastava에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you get a confirmed tatkal ticket by automating the form fill-up"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Every morning at 10 A.M a majority of the population indulge in a race to get a confirmed tatkal railway ticket. 
Our goal is to assist the user in getting a confirmed tatkal ticket by automating form fill up.                    

확장 프로그램 기본 정보

이름 IRCTC Tatkal Helper IRCTC Tatkal Helper
ID ncnebfjihlijmmdcnglbdmkgdknpcnik
공식 URL https://chromewebstore.google.com/detail/irctc-tatkal-helper/ncnebfjihlijmmdcnglbdmkgdknpcnik
설명 Helps you get a confirmed tatkal ticket by automating the form fill-up
파일 크기 252 KB
설치 횟수 1,739
현재 버전 1.7
최근 업데이트 2015-08-08
출시 날짜 2015-08-07
평점 2.00/5 총 4 개의 평점
개발자 Abhinav Srivastava
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IRCTC Tatkal Helper",
    "short_name": "Tatkal Helper",
    "description": "Helps you get a confirmed tatkal ticket by automating the form fill-up",
    "version": "1.7",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.services.irctc.co.in\/"
            ],
            "js": [
                "login_details.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.irctc.co.in\/eticketing\/loginHome.jsf"
            ],
            "js": [
                "login_details_new.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.services.irctc.co.in\/cgi-bin\/bv60.dll\/irctc\/services\/login.do"
            ],
            "js": [
                "goto_book_ticket_page.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.irctc.co.in\/eticketing\/home"
            ],
            "js": [
                "journey_details.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.irctc.co.in\/eticketing\/mainpage.jsf"
            ],
            "js": [
                "book_ticket.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.irctc.co.in\/eticketing\/trainbetweenstns.jsf"
            ],
            "js": [
                "passenger_form_fill.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.irctc.co.in\/eticketing\/jpInput.jsf*"
            ],
            "js": [
                "select_payment_option.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mobile.onlinesbi.com\/sbipgnew\/irctcrequest.action"
            ],
            "js": [
                "fill_imps_merchant_payment_details.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon-48.png",
        "default_title": "IRCTC Tatkal Helper"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.irctc.co.in\/",
        "https:\/\/mobile.onlinesbi.com\/",
        "https:\/\/www.services.irctc.co.in\/",
        "http:\/\/www.services.irctc.co.in\/"
    ],
    "web_accessible_resources": [
        "myscript.js",
        "background.js",
        "images\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}