Zillow Price Per Square Foot

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

O que é Zillow Price Per Square Foot?

Zillow Price Per Square Foot é uma extensão do Chrome desenvolvida por dgrant069, e sua principal característica é "Runs in background to automatically add price per square foot right underneath the main asking price of homes".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Zillow Price Per Square Foot

Baixe arquivos de extensão Zillow Price Per Square Foot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição Runs in background to automatically add price per square foot right underneath the main asking price of homes
Tamanho do Arquivo 35.69 KB
Contagem de Instalações 718
Versão Atual 0.1
Última Atualização 2016-02-03
Data de Publicação 2016-02-01
Classificação 4.23/5 Total de 13 Avaliações
Desenvolvedor dgrant069
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}