Immonotify: Germany Flat Search Bot

Immonotify: Germany Flat Search Bot

Apply first! Get notified when new search results show up on the ImmobilienScout24 on your browser.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_extensionDescription__",
  "version": "0.1.6",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Immobilienscout24 Refesher Extension",
    "default_icon": "immoscout-notifier-32.png"
  },
  "icons": {
    "32": "immoscout-notifier-32.png",
    "128": "immoscout-notifier-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "offscreen"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.immobilienscout24.de/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.bundle.js"
      ],
      "run_at": "document_start"
    }
  ]
}