Funda Neighbourhoods

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

¿Qué es Funda Neighbourhoods?

Funda Neighbourhoods es una extensión de Chrome desarrollada por Nikita Indik, y su función principal es "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Funda Neighbourhoods

Descarga archivos de extensión Funda Neighbourhoods en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
URL Oficial https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
Descripción Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Tamaño del Archivo 40.33 KB
Cantidad de Instalaciones 1,663
Versión Actual 0.6.1
Última Actualización 2022-04-01
Fecha de Publicación 2020-05-03
Calificación 4.00/5 Total de 6 Calificaciones
Desarrollador Nikita Indik
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/nikitaindik/funda-neighbourhoods
URL de la Página de Ayuda https://github.com/nikitaindik/funda-neighbourhoods
URL de la Página de Política de Privacidad https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
Idiomas Soportados 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"
}