Property Efficax

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

Property Efficaxคืออะไร?

Property Efficax เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Property Efficax และคุณลักษณะหลักของมันคือ "Keeps track of price changes on Rightmove. Gives you property price averages for similar properties."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Property Efficax

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Property Efficax Property Efficax
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
อีเมล [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
}