Funda Neighbourhoods

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

O que é Funda Neighbourhoods?

Funda Neighbourhoods é uma extensão do Chrome desenvolvida por Nikita Indik, e sua principal característica é "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Funda Neighbourhoods

Baixe arquivos de extensão Funda Neighbourhoods no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
URL Oficial https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
Descrição Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Tamanho do Arquivo 40.33 KB
Contagem de Instalações 1,663
Versão Atual 0.6.1
Última Atualização 2022-04-01
Data de Publicação 2020-05-03
Classificação 4.00/5 Total de 6 Avaliações
Desenvolvedor Nikita Indik
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nikitaindik/funda-neighbourhoods
URL da Página de Ajuda https://github.com/nikitaindik/funda-neighbourhoods
URL da Página de Política de Privacidade https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
Idiomas Suportados 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"
}