Funda Neighbourhoods

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

Co to jest Funda Neighbourhoods?

Funda Neighbourhoods to rozszerzenie Chrome opracowane przez Nikita Indik, a jego główną funkcją jest „Adds helpful information about neighbourhood to house / apartment pages on funda.nl”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Funda Neighbourhoods

Pobierz pliki rozszerzeń Funda Neighbourhoods w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
Oficjalny URL https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
Opis Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Rozmiar pliku 40.33 KB
Liczba instalacji 1,663
Aktualna Wersja 0.6.1
Ostatnia Aktualizacja 2022-04-01
Data Publikacji 2020-05-03
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper Nikita Indik
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nikitaindik/funda-neighbourhoods
Adres URL Strony Pomocy https://github.com/nikitaindik/funda-neighbourhoods
Adres URL Strony Polityki Prywatności https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
Obsługiwane Języki 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"
}