Zillow Price Per Square Foot

Runs in background to automatically add price per square foot right underneath the main asking price of homes

Was ist Zillow Price Per Square Foot?

Zillow Price Per Square Foot ist eine Chrome-Erweiterung, die von dgrant069 entwickelt wurde, und ihr Hauptmerkmal ist "Runs in background to automatically add price per square foot right underneath the main asking price of homes".

Erweiterungsscreenshots

screenshot

Zillow Price Per Square Foot-Erweiterungs-CRX-Datei herunterladen

Laden Sie Zillow Price Per Square Foot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Very simple extension made specifically for Zillow home detail pages. Runs in the background once enabled to calculate and display the price per square foot of a listing directly underneath the prominently displayed asking price.                    

Grundlegende Informationen zur Erweiterung

Name Zillow Price Per Square Foot Zillow Price Per Square Foot
ID pidnjioigjcocochaphjipidpnmnffmc
Offizielle URL https://chromewebstore.google.com/detail/zillow-price-per-square-f/pidnjioigjcocochaphjipidpnmnffmc
Beschreibung Runs in background to automatically add price per square foot right underneath the main asking price of homes
Dateigröße 35.69 KB
Installationsanzahl 718
Aktuelle Version 0.1
Letztes Update 2016-02-03
Veröffentlichungsdatum 2016-02-01
Bewertung 4.23/5 Insgesamt 13 Bewertungen
Entwickler dgrant069
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zillow Price Per Square Foot",
    "description": "Runs in background to automatically add price per square foot right underneath the main asking price of homes",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.zillow.com\/homes\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}