Enhanced Redfin Data
Improves redfin experience with more information about houses.
Co to jest Enhanced Redfin Data?
Enhanced Redfin Data to rozszerzenie Chrome opracowane przez Vignesh Venkat, a jego główną funkcją jest „Improves redfin experience with more information about houses.”.
Pobierz plik CRX rozszerzenia Enhanced Redfin Data
Pobierz pliki rozszerzeń Enhanced Redfin Data w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | hjcngbodppponacgimckecejbkcaccnf |
| Oficjalny URL | https://chromewebstore.google.com/detail/enhanced-redfin-data/hjcngbodppponacgimckecejbkcaccnf |
| Opis | Improves redfin experience with more information about houses. |
| Rozmiar pliku | 37.33 KB |
| Liczba instalacji | 23 |
| Aktualna Wersja | 1.3 |
| Ostatnia Aktualizacja | 2018-02-02 |
| Data Publikacji | 2018-02-02 |
| Deweloper | Vignesh Venkat |
| Typ Płatności | free |
| Obsługiwane Języki | 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."
} | |