IRCTC Alerter

IRCTC Alerter

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

Merlin
Additional files are visible only to premium users

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"
  ]
}