Property Efficax
Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.
Co to jest Property Efficax?
Property Efficax to rozszerzenie Chrome opracowane przez Property Efficax, a jego główną funkcją jest „Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Property Efficax
Pobierz pliki rozszerzeń Property Efficax 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 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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kjiflepnhgpllmbafngbkeikjjhedkfp |
Oficjalny URL | https://chrome.google.com/webstore/detail/property-efficax/kjiflepnhgpllmbafngbkeikjjhedkfp |
Opis | Keeps track of price changes on Rightmove. Gives you property price averages for similar properties. |
Rozmiar pliku | 563 KB |
Liczba instalacji | 381 |
Aktualna Wersja | 1.7.4 |
Ostatnia Aktualizacja | 2019-12-22 |
Data Publikacji | 2019-12-15 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | Property Efficax |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |