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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Immonotifier: New Apartment Notifier 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Immonotifier: New Apartment Notifier
ID nmhcccoakjecenoofdonmcdigomabjnm
공식 URL 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"
}