Real Price

Find the real price for Australian Real Estate!

O que é Real Price?

Real Price é uma extensão do Chrome desenvolvida por Kaiserapps, e sua principal característica é "Find the real price for Australian Real Estate!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Real Price

Baixe arquivos de extensão Real Price no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Real Price Real Price
ID kckgiidmkllghibpmlploicellcieppd
URL Oficial https://chromewebstore.google.com/detail/real-price/kckgiidmkllghibpmlploicellcieppd
Descrição Find the real price for Australian Real Estate!
Tamanho do Arquivo 10.02 KB
Contagem de Instalações 260
Versão Atual 1.0
Última Atualização 2020-09-28
Data de Publicação 2020-09-27
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor Kaiserapps
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/benkaiser/real-price
URL da Página de Ajuda https://github.com/benkaiser/real-price/issues
Idiomas Suportados 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
}