Real Estate Buddy

Find your perfect home...faster!

什么是Real Estate Buddy?

Real Estate Buddy是由Yann Hulot开发的Chrome扩展程序,该扩展的主要功能是“Find your perfect home...faster!”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Real Estate Buddy扩展crx文件

下载Real Estate Buddy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Real Estate Buddy gives you superpowers to help you find your dream home. 

It calculates future mortgage repayments in your browser while looking at properties for sale on realestate.com.au , domain.com.au, zillow.com or trulia.com .

It gives you more insights on the properties for sale in your area and gives you more confidence to buy a property that fits your current financial situation.

💁🏽 What can Real Estate Buddy do for me?

⚙️Repayments calculations

- Calculates monthly, weekly or fortnightly mortgage repayments.
- Enables you to add a price premium to all listings to account for potential underquoting.

---------------------------

🔍 Enhanced search

- Hides or blurs properties without advertised prices.
- Display price estimates for properties whose price is not present in the listing description.

----------------------------

📊 Better indicators

- Displays an LMI indicator on each property.
- Displays an affordability indicator on each property.

----------------------------

⭐️ Highlights

- Highlight affordable properties based on your financial situation. 
- Highlight free properties that you could purchase outright.

----------------------------

❓Why Real Estate Buddy?

As a prospective buyer myself, I have spent countless hours looking through properties and was tired of seeing listings without prices and not being able to customise the way the price for each property is displayed based on my current financial situation.

🗺️ Which websites does Real Estate Buddy support?
- zillow.com
- trulia.com
- realestate.com.au
- domain.com.au

📧 How can I contact the Real Estate Buddy team for feedback or support?

You can contact Yann, the extension’s creator, on Twitter directly if you need help or to report a bug: @yannhulot1

➕Are you planning to add more features to Real Estate Buddy?

Yes! I plan to:
- Break down loan costs by displaying the principal and interest values over time.
- Add the ability to favourite properties and the financial data attached to them.
- Simulate property price growth over time
- Add more filter options.
- Add more highlighting options.
- Include PMI/LMI premium in loan calculations.
- Include other fees as part of the calculations (e.g. stamp duty, conveyancing fees, title transfer, loan fees etc.).

🧑🏻‍🤝‍🧑🏻 Great extension! How can I support Real Estate Buddy?

If you’re enjoying the extension, please consider leaving a five-star rating and telling your friends and family about it. Your support helps a lot!

🔒 What happens to my data?

Nothing. Your data is stored in your browser. I don’t have access to it. It is NOT backed up anywhere else. If you uninstall the extension, your data will be automatically deleted from your browser. All the calculations are made in your browser and are never sent to a third party.

💰 Is there a paid version of the extension with better features?

Not at this stage. If the extension proves to be useful, I may roll out a paid version with enhanced features. At the moment, there is no website, no support besides myself on Twitter and no product to upsell you. It is entirely free.

⚠️ Disclaimer

Real Estate Buddy does not guarantee, and accepts no legal liability for, the accuracy, reliability or completeness of any material displayed through the Real Estate Buddy extension. No action or inaction should be taken based solely on the contents of this information.

The trademarks and websites realestate.com.au , domain.com.au , zillow.com and trulia.com belong to their respective owners and neither Real Estate Buddy or I are affiliated with them in any way.

This extension is a third party product and is not officially created by or related to realestate.com.au™, domain.com.au™, trulia.com™ or zillow.com™.                    

扩展基本信息

名称 Real Estate Buddy Real Estate Buddy
ID idhhfoemdabklbkdabbodgbahfedfljp
官方URL https://chromewebstore.google.com/detail/real-estate-buddy/idhhfoemdabklbkdabbodgbahfedfljp
简介 Find your perfect home...faster!
文件大小 411 KB
安装次数 351
当前版本 1.3.9
更新时间 2021-12-24
上架时间 2021-10-09
评分 5.00/5 共1次评分
开发者 Yann Hulot
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Real Estate Buddy",
    "description": "Find your perfect home...faster!",
    "manifest_version": 3,
    "version": "1.3.9",
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "action": {
        "default_icon": {
            "16": "16x16.png",
            "48": "48x48.png",
            "128": "128x128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.realestate.com.au\/*",
                "https:\/\/*.domain.com.au\/*",
                "https:\/\/*.zillow.com\/*",
                "https:\/\/*.trulia.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "menu.html"
            ],
            "matches": [
                "https:\/\/*.domain.com.au\/*",
                "https:\/\/*.realestate.com.au\/*",
                "https:\/\/*.zillow.com\/*",
                "https:\/\/*.trulia.com\/*"
            ]
        },
        {
            "resources": [
                "16x16.png",
                "48x48.png"
            ],
            "matches": [
                "https:\/\/*.domain.com.au\/*",
                "https:\/\/*.realestate.com.au\/*",
                "https:\/\/*.zillow.com\/*",
                "https:\/\/*.trulia.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.realestate.com.au\/*",
        "https:\/\/*.domain.com.au\/*",
        "https:\/\/*.zillow.com\/*",
        "https:\/\/*.trulia.com\/*"
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; img-src * 'self' data: https:; style-src 'self' 'unsafe-inline'; script-src  'self'; connect-src https:\/\/*.realestate.com.au\/* https:\/\/*.domain.com.au\/* https:\/\/*.zillow.com\/* https:\/\/*.trulia.com\/*"
    }
}