SFR Spotter

Spot rental revenue on Zillow search results

Τι είναι το SFR Spotter;

Το SFR Spotter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ahmed Magdy, και η κύρια λειτουργία του είναι "Spot rental revenue on Zillow search results".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SFR Spotter

Λήψη αρχείων επέκτασης SFR Spotter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        The extension helps you find a profitable Single Family Rental on Zillow. Whether you're in wholesaling or a buy-and-hold investor, SFR spotter is the tool for you.

Save your time and money by using this extension to "spot" profitable rental properties amongst Zillow search results without having to open each listing's individual page. The extension goes behind the scenes to get the rent Zestimate, does the math for you and present you with cash-on-cash ROI based on your preselected financial criteria. This is done for a whole page of results at a time.

Just enter your financial preferences into the extension (down payment, mortgage plan and interest rate, insurance, ... etc), press the "Scout" button and voila!. Seconds later you'll see the expected ROI of each listing in the results right on top of its picture.

You can also get into each property page to see a break down of the numbers in two scenarios: a) if you get the property on the asked price, and b) if you get it on Zestimate price.

Important to know:
- You'll need to sign up before you are able to use the extension. No credit card needed to sign up.
- The SFR Spotter extension is in beta and it's free to use till further notice.
- For now, the extension works only on Zillow. New sites are coming soon.
- You no longer need a Zillow API key to run the extension.

Please visit our website for more info and a detailed how-to guide to use the extension.                    

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

Όνομα SFR Spotter SFR Spotter
ID mbbhfphchfinapjhfeekhadmjjgbpiig
Επίσημο URL https://chromewebstore.google.com/detail/sfr-spotter/mbbhfphchfinapjhfeekhadmjjgbpiig
Περιγραφή Spot rental revenue on Zillow search results
Μέγεθος Αρχείου 236 KB
Αριθμός Εγκαταστάσεων 51
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2023-09-26
Ημερομηνία Δημοσίευσης 2020-02-04
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Ahmed Magdy
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Ιστότοπος Επέκτασης https://sfrspotter.wordpress.com
Διεύθυνση URL της Σελίδας Βοήθειας https://sfrspotter.wordpress.com/contact
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SFR Spotter",
    "version": "1.0.2",
    "description": "Spot rental revenue on Zillow search results",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.zillow.com\/*",
        "https:\/\/sfr.auth.us-east-2.amazoncognito.com\/*",
        "https:\/\/d35wio59s9fxlc.cloudfront.net\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.zillow.com\/*"
            ],
            "css": [
                "assets\/styles\/styles.css",
                "utils\/styles\/bootstrap.min.css"
            ],
            "js": [
                "utils\/js\/amazon-cognito-auth.min.js",
                "assets\/js\/prep.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/images\/Logo16.png",
            "32": "assets\/images\/Logo32.png",
            "48": "assets\/images\/Logo48.png",
            "128": "assets\/images\/Logo128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "Top_Sum.html",
                "assets\/images\/check-symbol.svg",
                "assets\/images\/close-button.svg",
                "assets\/images\/double-tick-indicator.svg",
                "assets\/images\/double_arrow-24px.svg",
                "assets\/images\/Logo32.png",
                "assets\/js\/pageUpdateMonitor.js"
            ],
            "matches": [
                "*:\/\/www.zillow.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/images\/Logo16.png",
        "32": "assets\/images\/Logo32.png",
        "48": "assets\/images\/Logo48.png",
        "128": "assets\/images\/Logo128.png"
    }
}