Property Efficax

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

Was ist Property Efficax?

Property Efficax ist eine Chrome-Erweiterung, die von Property Efficax entwickelt wurde, und ihr Hauptmerkmal ist "Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.".

Erweiterungsscreenshots

screenshot

Property Efficax-Erweiterungs-CRX-Datei herunterladen

Laden Sie Property Efficax-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Property Efficax Property Efficax
ID kjiflepnhgpllmbafngbkeikjjhedkfp
Offizielle URL https://chrome.google.com/webstore/detail/property-efficax/kjiflepnhgpllmbafngbkeikjjhedkfp
Beschreibung Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.
Dateigröße 563 KB
Installationsanzahl 381
Aktuelle Version 1.7.4
Letztes Update 2019-12-22
Veröffentlichungsdatum 2019-12-15
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Property Efficax
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}