Property Efficax
Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.
什麼是Property Efficax?
Property Efficax是由Property Efficax開發的Chrome擴展程式,該擴展的主要功能是“Keeps track of price changes on Rightmove. Gives you property price averages for similar properties.”。
擴展截圖
下載Property Efficax擴展crx文件
下載Property Efficax擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | kjiflepnhgpllmbafngbkeikjjhedkfp |
官方網址 | https://chrome.google.com/webstore/detail/property-efficax/kjiflepnhgpllmbafngbkeikjjhedkfp |
簡介 | Keeps track of price changes on Rightmove. Gives you property price averages for similar properties. |
檔案大小 | 563 KB |
安裝次數 | 381 |
目前版本 | 1.7.4 |
更新時間 | 2019-12-22 |
上架時間 | 2019-12-15 |
評分 | 3.67/5 共 3 次評分 |
開發者 | Property Efficax |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |