Funda Neighbourhoods
Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Was ist Funda Neighbourhoods?
Funda Neighbourhoods ist eine Chrome-Erweiterung, die von Nikita Indik entwickelt wurde, und ihr Hauptmerkmal ist "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".
Erweiterungsscreenshots
Funda Neighbourhoods-Erweiterungs-CRX-Datei herunterladen
Laden Sie Funda Neighbourhoods-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Get to know the neighbourhood around properties you like. This extension enhances Funda with useful information to help you choose the right property. Learn about: - how old are houses in the neighbourhood - what is the average income of residents - neighbourhood marital status statistics - is it a family-lifestyle neighbourhood - residents cultural background - and other statistical facts This extension uses official data from Dutch Census Bureau (CBS).
Grundlegende Informationen zur Erweiterung
Name | Funda Neighbourhoods |
ID | jibdjhaojkpiagiccmolddmlhllancgj |
Offizielle URL | https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj |
Beschreibung | Adds helpful information about neighbourhood to house / apartment pages on funda.nl |
Dateigröße | 40.33 KB |
Installationsanzahl | 1,663 |
Aktuelle Version | 0.6.1 |
Letztes Update | 2022-04-01 |
Veröffentlichungsdatum | 2020-05-03 |
Bewertung | 4.00/5 Insgesamt 6 Bewertungen |
Entwickler | Nikita Indik |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/nikitaindik/funda-neighbourhoods |
Hilfeseite URL | https://github.com/nikitaindik/funda-neighbourhoods |
URL der Datenschutzrichtlinien-Seite | https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md |
Unterstützte Sprachen | en,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "manifest_version": 2, "description": "__MSG_appDescription__", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.funda.nl\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": true, "browser_style": true }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "browser_specific_settings": { "gecko": { "id": "{00758a4a-70d5-4319-a89b-3c9f92a5b751}" } }, "version": "0.6.1" } |