Property Efficax

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

Property Efficax क्या है?

Property Efficax Property Efficax द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Keeps track of price changes on Rightmove. Gives you property price averages for similar properties."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Property Efficax एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}