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 |
公式URL | 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 |
Eメール | [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 } |