Property Picker (Zoopla & Rightmove)

Affordability information on all listings. Currently available on Zoopla and Rightmove.

Τι είναι το Property Picker (Zoopla & Rightmove);

Το Property Picker (Zoopla & Rightmove) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Property Picker, και η κύρια λειτουργία του είναι "Affordability information on all listings. Currently available on Zoopla and Rightmove.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Property Picker (Zoopla & Rightmove)

Λήψη αρχείων επέκτασης Property Picker (Zoopla & Rightmove) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Have you ever browsed Zoopla or Rightmove during the current UK housing market increase and no longer have a feasible idea of what you can afford, or perhaps how far away you are from affording a particular property? 

Whether that's a rental property, your first home, or your next move - this extension takes away all of the guess work you have when scrolling through listings. 

When you enable Property Picker and fill in some basic details, listings will be colour coded into 4 segments: 
- Green (affordable)
- Yellow (within reach)
- Orange (possible but restrictive)
- Red (out of reach)

For every property you browse, there's a swift calculation on your tailored affordability rating. 

This is based on your annual salary and monthly salary after tax. If you are looking to buy a property you can also enter your deposit amount, as well as the mortgage interest rate you are looking to achieve. Feel free to play around with these amounts to see how any fluctuation will effect your rating.

You can also filter your properties based on your input. For example, you may only want to see properties in the "affordable" or "within reach" categories. Just select the option at the top of the listings to see your filtered results.

If you are looking at for sale properties, you will also see an estimated monthly payment. For rentals, you'll get an additional yearly income amount you may need to live comfortably.

_____

Please note: this extension is for properties based in the UK only for zoopla.co.uk and rightmove.co.uk.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Property Picker (Zoopla & Rightmove) Property Picker (Zoopla & Rightmove)
ID alhgnjcbifgcolhemhfpglfefdpkgffo
Επίσημο URL https://chromewebstore.google.com/detail/property-picker-zoopla-ri/alhgnjcbifgcolhemhfpglfefdpkgffo
Περιγραφή Affordability information on all listings. Currently available on Zoopla and Rightmove.
Μέγεθος Αρχείου 21.14 KB
Αριθμός Εγκαταστάσεων 493
Τρέχουσα Έκδοση 3.30
Τελευταία Ενημέρωση 2023-09-24
Ημερομηνία Δημοσίευσης 2023-03-04
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Property Picker
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://property-picker.netlify.app/
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Property Picker (Zoopla & Rightmove)",
    "description": "Affordability information on all listings. Currently available on Zoopla and Rightmove.",
    "version": "3.30",
    "host_permissions": [
        "https:\/\/zoopla.co.uk\/*",
        "https:\/\/rightmove.co.uk\/*"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "icon_purple.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.zoopla.co.uk\/*",
                "https:\/\/www.rightmove.co.uk\/*"
            ],
            "js": [
                "dist\/bundle.js"
            ],
            "css": [
                "edit.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}