Zillow Price Per Square Foot

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

Cos'è Zillow Price Per Square Foot?

Zillow Price Per Square Foot è un'estensione di Chrome sviluppata da dgrant069, e la sua funzione principale è "Runs in background to automatically add price per square foot right underneath the main asking price of homes".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Zillow Price Per Square Foot

Scarica i file di estensione Zillow Price Per Square Foot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Zillow Price Per Square Foot Zillow Price Per Square Foot
ID pidnjioigjcocochaphjipidpnmnffmc
URL Ufficiale https://chromewebstore.google.com/detail/zillow-price-per-square-f/pidnjioigjcocochaphjipidpnmnffmc
Descrizione Runs in background to automatically add price per square foot right underneath the main asking price of homes
Dimensione del File 35.69 KB
Conteggio Installazioni 718
Versione Corrente 0.1
Ultimo Aggiornamento 2016-02-03
Data di Pubblicazione 2016-02-01
Valutazione 4.23/5 Totale 13 Valutazioni
Sviluppatore dgrant069
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}