Property Efficax

Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.

O que é Property Efficax?

Property Efficax é uma extensão do Chrome desenvolvida por Property Efficax, e sua principal característica é "Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Property Efficax

Baixe arquivos de extensão Property Efficax 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 is similar to former Property bee.

It keeps track of the price changes of properties on Rightmove.

Price drops on properties often indicate that the owner is keen on making a sale. Unfortunately Rightmove, unlike Zoopla, only shows the current listing price and not the previous ones. This extension persists every price on internal databases and then provides you with a full history.

It also shows you the average price for similar properties in the area.                    

Informações Básicas da Extensão

Nome Property Efficax Property Efficax
ID kjiflepnhgpllmbafngbkeikjjhedkfp
URL Oficial https://chrome.google.com/webstore/detail/property-efficax/kjiflepnhgpllmbafngbkeikjjhedkfp
Descrição Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.
Tamanho do Arquivo 563 KB
Contagem de Instalações 381
Versão Atual 1.7.4
Última Atualização 2019-12-22
Data de Publicação 2019-12-15
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Property Efficax
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Property Efficax",
    "version": "1.7.4",
    "description": "Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.rightmove.co.uk\/property-for-sale\/find*"
            ],
            "css": [
                "css\/custom.css",
                "css\/bootstrap.min.css"
            ],
            "js": [
                "dist\/bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2
}