Zillow Price Per Square Foot

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

Что такое Zillow Price Per Square Foot?

Zillow Price Per Square Foot - это расширение Chrome, разработанное dgrant069, и его основная функция - "Runs in background to automatically add price per square foot right underneath the main asking price of homes".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Zillow Price Per Square Foot

Скачайте файлы расширений Zillow Price Per Square Foot в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Zillow Price Per Square Foot Zillow Price Per Square Foot
ID pidnjioigjcocochaphjipidpnmnffmc
Официальный URL https://chromewebstore.google.com/detail/zillow-price-per-square-f/pidnjioigjcocochaphjipidpnmnffmc
Описание Runs in background to automatically add price per square foot right underneath the main asking price of homes
Размер файла 35.69 KB
Количество установок 718
Текущая Версия 0.1
Последнее Обновление 2016-02-03
Дата публикации 2016-02-01
Рейтинг 4.23/5 Всего 13 оценок
Разработчик dgrant069
Тип оплаты free
Поддерживаемые языки 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"
        ]
    }
}