Rehlat Extension

Rehlat Extension

Rehlat Extension, Stay tuned to fare alerts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rehlat Extension",
  "version": "6.8",
  "description": "Rehlat Extension, Stay tuned to fare alerts.",
  "manifest_version": 2,
  "permissions": [
    "identity",
    "webNavigation",
    "tabs",
    "management",
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "images/ic_launcher.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "contentscript.js",
        "installed.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://www.rehlat.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "html/demo_new.html",
    "html/ar/demo_new.html"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}