Real Price

Find the real price for Australian Real Estate!

Co to jest Real Price?

Real Price to rozszerzenie Chrome opracowane przez Kaiserapps, a jego główną funkcją jest „Find the real price for Australian Real Estate!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Real Price

Pobierz pliki rozszerzeń Real Price w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension adds a button to search results and listings on realestate.com.au to reveal the internal price of a listing. This is useful in Queensland where many listings do not have prices publicly available but there is a hidden price behind the scenes for the listing.

All this extension really does is query realestate.com.au multiple times until the exact price is found and displays that to you.                    

Podstawowe informacje o rozszerzeniu

Nazwa Real Price Real Price
ID kckgiidmkllghibpmlploicellcieppd
Oficjalny URL https://chromewebstore.google.com/detail/real-price/kckgiidmkllghibpmlploicellcieppd
Opis Find the real price for Australian Real Estate!
Rozmiar pliku 10.02 KB
Liczba instalacji 260
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-09-28
Data Publikacji 2020-09-27
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper Kaiserapps
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/benkaiser/real-price
Adres URL Strony Pomocy https://github.com/benkaiser/real-price/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Real Price",
    "version": "1.0",
    "description": "Find the real price for Australian Real Estate!",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.realestate.com.au\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "manifest_version": 2
}