Funda Neighbourhoods
Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Hvad er Funda Neighbourhoods?
Funda Neighbourhoods er en Chrome-udvidelse udviklet af Nikita Indik, og dens hovedfunktion er "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".
Udvidelsesskærmbilleder
Download Funda Neighbourhoods-udvidelses-CRX-fil
Download Funda Neighbourhoods-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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). Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jibdjhaojkpiagiccmolddmlhllancgj |
| Officiel URL | https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj |
| Beskrivelse | Adds helpful information about neighbourhood to house / apartment pages on funda.nl |
| Filstørrelse | 40.33 KB |
| Antal Installationer | 1,663 |
| Nuværende Version | 0.6.1 |
| Senest Opdateret | 2022-04-01 |
| Udgivelsesdato | 2020-05-03 |
| Bedømmelse | 4.00/5 Samlet 6 Bedømmelser |
| Udvikler | Nikita Indik |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/nikitaindik/funda-neighbourhoods |
| Hjælpeside-URL | https://github.com/nikitaindik/funda-neighbourhoods |
| URL til Fortrolighedspolitik Side | https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md |
| Understøttede Sprog | 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"
} | |