Funda Neighbourhoods

Adds helpful information about neighbourhood to house / apartment pages on funda.nl

What is Funda Neighbourhoods?

Funda Neighbourhoods is a Chrome extension developed by Nikita Indik, and its main feature is "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Funda Neighbourhoods Extension CRX File

Download Funda Neighbourhoods extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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).                    

Extension Basic Information

Name Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
Official URL https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
Description Adds helpful information about neighbourhood to house / apartment pages on funda.nl
File Size 40.33 KB
Installation Count 1,663
Current Version 0.6.1
Last Updated 2022-04-01
Publish Date 2020-05-03
Rating 4.00/5 Total 6 Ratings
Developer Nikita Indik
Email [email protected]
Payment Type free
Extension Website https://github.com/nikitaindik/funda-neighbourhoods
Help Page URL https://github.com/nikitaindik/funda-neighbourhoods
Privacy Policy Page URL https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
Supported Languages 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"
}