Immonotifier: New Apartment Notifier
A Chrome extension to get notified when new search results show up on the ImmobilienScout24.
什麼是Immonotifier: New Apartment Notifier?
Immonotifier: New Apartment Notifier是由https://immoscoutnotifier.com開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to get notified when new search results show up on the ImmobilienScout24.”。
擴展截圖
下載Immonotifier: New Apartment Notifier擴展crx文件
下載Immonotifier: New Apartment Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Need to check Immobilienscout24 all the time but don't have time? Just set a page refresh timer with this extension on the Immoscout search page and it will tell you when a new apartment in your search results show up. Apply apartments early, maximize your chances!
擴展基本資訊
名稱 | Immonotifier: New Apartment Notifier |
ID | nmhcccoakjecenoofdonmcdigomabjnm |
官方網址 | https://chromewebstore.google.com/detail/immonotifier-new-apartmen/nmhcccoakjecenoofdonmcdigomabjnm |
簡介 | A Chrome extension to get notified when new search results show up on the ImmobilienScout24. |
檔案大小 | 301 KB |
安裝次數 | 90 |
目前版本 | 0.1.3 |
更新時間 | 2023-03-06 |
上架時間 | 2022-12-19 |
開發者 | https://immoscoutnotifier.com |
電子郵箱 | [email protected] |
付費類型 | in_app |
擴展官網 | https://immoscoutnotifier.com |
支援的語言 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_extensionDescription__", "version": "0.1.3", "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" } ], "devtools_page": "devtools.html" } |