Viewpoint Calculations

Take a home price in Viewpoint and calculate monthly cost

Viewpoint Calculationsคืออะไร?

Viewpoint Calculations เป็นส่วนขยายของ Chrome ที่พัฒนาโดย J Doyle Dev และคุณลักษณะหลักของมันคือ "Take a home price in Viewpoint and calculate monthly cost"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Viewpoint Calculations

ดาวน์โหลดไฟล์ส่วนขยาย Viewpoint Calculations ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A simple Chrome extension to do quick monthly calculations and insert them in cutsheets on https://www.viewpoint.ca

Options

Downpayment (%) - The percentage downpayment you would like to make.
Interest Rate (%) - Your expected interest rate
Property Tax Rate (%) - The tax rate in the municipality you expect to buy
Amoritization Period - The number of years you expect your amoritization period to be
Estimated Monthly Utilities (optional) - The dollar amount of your expected monthly utility costs, such as heating, electricty, internet, etc.
Current Monthly Costs (optional) - Enter your current total monthly living expenses to quickly see the difference from your expected monthly costs
Use Assessed Value - When calculating monthly property tax numbers the extension uses the Tax Assessed value on the cutsheet. If this value may be inaccurate, unchecking this box will instead use the sale price to calculate property taxes. This is useful for new construction, where the assessed value on the cutsheet may be the value of the land, or for partial completion of the house
Notes

Mortgage calculations take into account CMHC default insurance rules and limits on downpayments.

Disclaimer

This tool was built as a quick reference tool while I was house hunting on ViewPoint, and any mortgage calculations should be verified against a trusted mortgage calculator.

Developers

Please feel free to open an issue and/or pull request if you find any issues, or have improvments you would like to make! I can't promise a quick response, but I will certainly take a look when I'm able.

Acknowledgements

Credit for app icon to Pause08 on https://www.flaticon.com/authors/pause08                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Viewpoint Calculations Viewpoint Calculations
ID nmjknfefbdmmjejaniebhkpagjoopodc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/viewpoint-calculations/nmjknfefbdmmjejaniebhkpagjoopodc
คำอธิบาย Take a home price in Viewpoint and calculate monthly cost
ขนาดไฟล์ 42.88 KB
จำนวนการติดตั้ง 24
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-01-27
วันที่เผยแพร่ 2019-01-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา J Doyle Dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jdoyle65/viewpoint-cost-estimater
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Viewpoint Calculations",
    "version": "1.0",
    "description": "Take a home price in Viewpoint and calculate monthly cost",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.viewpoint.ca\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/vp-logo16.png",
            "32": "images\/vp-logo32.png",
            "48": "images\/vp-logo48.png",
            "128": "images\/vp-logo128.png"
        }
    },
    "icons": {
        "16": "images\/vp-logo16.png",
        "32": "images\/vp-logo32.png",
        "48": "images\/vp-logo48.png",
        "128": "images\/vp-logo128.png"
    },
    "manifest_version": 2
}