Real Price

Find the real price for Australian Real Estate!

Hvad er Real Price?

Real Price er en Chrome-udvidelse udviklet af Kaiserapps, og dens hovedfunktion er "Find the real price for Australian Real Estate!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Real Price-udvidelses-CRX-fil

Download Real Price-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Real Price Real Price
ID kckgiidmkllghibpmlploicellcieppd
Officiel URL https://chromewebstore.google.com/detail/real-price/kckgiidmkllghibpmlploicellcieppd
Beskrivelse Find the real price for Australian Real Estate!
Filstørrelse 10.02 KB
Antal Installationer 260
Nuværende Version 1.0
Senest Opdateret 2020-09-28
Udgivelsesdato 2020-09-27
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler Kaiserapps
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/benkaiser/real-price
Hjælpeside-URL https://github.com/benkaiser/real-price/issues
Understøttede Sprog 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
}