Enhanced Redfin Data

Improves redfin experience with more information about houses.

Что такое Enhanced Redfin Data?

Enhanced Redfin Data - это расширение Chrome, разработанное Vignesh Venkat, и его основная функция - "Improves redfin experience with more information about houses.".

Скачать файл CRX расширения Enhanced Redfin Data

Скачайте файлы расширений Enhanced Redfin Data в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Enhance redfin data with the following information:

* Distance to places (you can configure the places in the options page of the extension).
* Zillow estimates for the house.
* Google maps link.
* Up to date greatschools scores and direct link to greatschools.
* Move redfin panel to the top.

(Greatschools is tested only for California schools).

Source code: https://github.com/vickyg3/scripts/tree/master/redfin_location                    

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

Название Enhanced Redfin Data Enhanced Redfin Data
ID hjcngbodppponacgimckecejbkcaccnf
Официальный URL https://chromewebstore.google.com/detail/enhanced-redfin-data/hjcngbodppponacgimckecejbkcaccnf
Описание Improves redfin experience with more information about houses.
Размер файла 37.33 KB
Количество установок 23
Текущая Версия 1.3
Последнее Обновление 2018-02-02
Дата публикации 2018-02-02
Разработчик Vignesh Venkat
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enhanced Redfin Data",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.redfin.com\/*",
                "https:\/\/www.redfin.com\/*"
            ],
            "js": [
                "jquery.js",
                "script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "http:\/\/maps.googleapis.com\/*",
        "https:\/\/maps.googleapis.com\/*",
        "http:\/\/www.greatschools.org\/*",
        "https:\/\/www.greatschools.org\/*",
        "http:\/\/www.zillow.com\/*",
        "https:\/\/www.zillow.com\/*",
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2,
    "version": "1.3",
    "description": "Improves redfin experience with more information about houses."
}