olx-notify (olx india notifier)

olx-notify (olx india notifier)

Easily setup notifications for your OLX searches and queries, and be notified when new ads come up. This is an unofficial extension, not supported or released by OLX.

Additional files are visible only to premium users

manifest.json


{
  "description": "Easily setup notifications for your OLX searches and queries, and be notified when new ads come up. This is an unofficial extension, not supported or released by OLX.",
  "manifest_version": 2,
  "name": "olx-notify",
  "version": "1.0",
  "homepage_url": "https://www.gulecha.org",
  "icons": {
    "16": "icons/output16.png",
    "32": "icons/output32.png",
    "48": "icons/output48.png",
    "64": "icons/output64.png",
    "128": "icons/output128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "84ed2e6e4a3d5493f51f586f2a3ca861bf62d24d@olx-notifier",
      "strict_min_version": "48.0"
    }
  },
  "permissions": [
    "*://*.olx.in/*",
    "*://olx-notifier.gulecha.org/*",
    "activeTab",
    "webRequest",
    "storage",
    "webRequestBlocking",
    "alarms",
    "notifications"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/output16.png",
      "32": "icons/output32.png",
      "48": "icons/output48.png",
      "64": "icons/output64.png",
      "128": "icons/output128.png"
    },
    "default_title": "olx-notify",
    "default_popup": "popup/new_user.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.olx.in/*",
        "*://olx-notifier.gulecha.org/*"
      ],
      "js": [
        "browser-polyfill.min.js",
        "content_scripts/olx.js"
      ]
    }
  ],
  "background": {
    "page": "background_scripts/background.html"
  }
}