Zillow Price Per Square Foot

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

¿Qué es Zillow Price Per Square Foot?

Zillow Price Per Square Foot es una extensión de Chrome desarrollada por dgrant069, y su función principal es "Runs in background to automatically add price per square foot right underneath the main asking price of homes".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Zillow Price Per Square Foot

Descarga archivos de extensión Zillow Price Per Square Foot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Zillow Price Per Square Foot Zillow Price Per Square Foot
ID pidnjioigjcocochaphjipidpnmnffmc
URL Oficial https://chromewebstore.google.com/detail/zillow-price-per-square-f/pidnjioigjcocochaphjipidpnmnffmc
Descripción Runs in background to automatically add price per square foot right underneath the main asking price of homes
Tamaño del Archivo 35.69 KB
Cantidad de Instalaciones 718
Versión Actual 0.1
Última Actualización 2016-02-03
Fecha de Publicación 2016-02-01
Calificación 4.23/5 Total de 13 Calificaciones
Desarrollador dgrant069
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}