Funda Neighbourhoods

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

Cos'è Funda Neighbourhoods?

Funda Neighbourhoods è un'estensione di Chrome sviluppata da Nikita Indik, e la sua funzione principale è "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Funda Neighbourhoods

Scarica i file di estensione Funda Neighbourhoods in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
URL Ufficiale https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
Descrizione Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Dimensione del File 40.33 KB
Conteggio Installazioni 1,663
Versione Corrente 0.6.1
Ultimo Aggiornamento 2022-04-01
Data di Pubblicazione 2020-05-03
Valutazione 4.00/5 Totale 6 Valutazioni
Sviluppatore Nikita Indik
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nikitaindik/funda-neighbourhoods
URL della Pagina di Aiuto https://github.com/nikitaindik/funda-neighbourhoods
URL della Pagina della Politica sulla Privacy https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
Lingue Supportate 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"
}