Property Tracker

Tracks changes to property prices on the RightMove website.

Property Tracker क्या है?

Property Tracker codemwnci द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tracks changes to property prices on the RightMove website."।

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

screenshot
screenshot
screenshot

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

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

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

                        If you would like to support this extension, why not consider becoming a Patreon? https://www.patreon.com/codemwnci

Property Track allows you to track price changes on popular property websites, currently supporting the RightMove website. It allows you to see how properties you are searching for have changed in value since first coming on to the market.

It discreetly adds an image next to the price on search result page, indicating if the price has risen, fallen or stayed the same since first coming on to the market. By hovering the mouse over the icon, you can see details of how the price has changed over time.

This extension collects the price information every time you and other users visit the websites, so the more users, the more accurate the information will be, so share this tool with your friends!

You can read the privacy policy here --> https://codemwnci.github.io/propertytrack-privacy.html

Update: Version 1.1 - Now also shows the price changes on the property page, not just the search list page. Thanks Darren for the suggestion.

Update: Version 1.1.1 - Updated with RightMove site changes. Prices are now shown on single property pages again.

Update: Version 1.1.4 - Google changed some rules, so I had to update to continue to all the extension to work, also made some changes enforced by a few RightMove site changes. Should all work again now.

Update: Version 1.1.5 - RightMove site changes, spotted and patch supplied by Oliver Jowett. Thanks!

Update: Version 1.1.7 - My hosting company became very expensive, so have moved to Amazon Web Services. Have also fixed a few rendering issues in the latest version.

Update: Version 1.1.8 - Fixed a bug where some times the icons and price changes were not showing up.

Update: Version 1.1.9 - Fixed a bug following RightMove's most recent updates. However, this now does require the extension to click on the unauthorised sources (because the extension does not originate from RightMove)

Update: Version 1.1.12 - Moved to HTTPS to fix mixed content warnings.

Update: Version 1.1.15 - A few fixes, plus a trial of a sponsored link.

Update: Version 1.1.16 - Behind the scenes changes to make sure the extension doesn't break when Chrome makes its upcoming changes (Chrome v85 onwards)

Update: Version 1.1.18 - Updated to the new ManifestV3 required later this year by Google. No meaningful changes to PropertyTracker, as property tracker was already compliant with the new stricter rules.

Update: V 1.1.19 - Updated permissions to remove one unneeded permission (tabs).                    

एक्सटेंशन की मूल जानकारी

नाम Property Tracker Property Tracker
ID abgkpdjomdmemeefdefalbeogkmlmand
आधिकारिक URL https://chromewebstore.google.com/detail/property-tracker/abgkpdjomdmemeefdefalbeogkmlmand
विवरण Tracks changes to property prices on the RightMove website.
फ़ाइल का आकार 131 KB
स्थापना संख्या 35,808
वर्तमान संस्करण 1.1.19
अंतिम अपडेट 2022-05-15
प्रकाशन तिथि 2020-06-14
रेटिंग 4.05/5 कुल 75 रेटिंग्स
डेवलपर codemwnci
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://codemwnci.github.io/propertytrack-privacy.html
गोपनीयता नीति पृष्ठ URL https://codemwnci.github.io/propertytrack-privacy.html
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Property Tracker",
    "version": "1.1.19",
    "icons": {
        "128": "icon128.png"
    },
    "description": "Tracks changes to property prices on the RightMove website.",
    "action": {
        "default_icon": "icon3.png",
        "default_popup": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.rightmove.co.uk\/*find*",
                "https:\/\/www.rightmove.co.uk\/property-for-sale\/find*",
                "https:\/\/www.rightmove.co.uk\/properties\/*"
            ],
            "css": [
                "ptrack.css"
            ],
            "js": [
                "jquery.js",
                "popper.min.js",
                "tippy.min.js",
                "ptrack.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "jquery.js",
                "brickpal.png",
                "calc.png",
                "down.png",
                "same.png",
                "up.png"
            ],
            "matches": [
                "https:\/\/www.rightmove.co.uk\/*"
            ]
        }
    ],
    "permissions": [],
    "host_permissions": [
        "https:\/\/us-central1-housetrack-uk.cloudfunctions.net\/"
    ]
}