Funda Neighbourhoods

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

Apa itu Funda Neighbourhoods?

Funda Neighbourhoods adalah ekstensi Chrome yang dikembangkan oleh Nikita Indik, dan fitur utamanya adalah "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Funda Neighbourhoods

Unduh file ekstensi Funda Neighbourhoods dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
URL Resmi https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
Deskripsi Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Ukuran File 40.33 KB
Jumlah Instalasi 1,663
Versi Saat Ini 0.6.1
Terakhir Diperbarui 2022-04-01
Tanggal Publikasi 2020-05-03
Penilaian 4.00/5 Total 6 Penilaian
Pengembang Nikita Indik
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/nikitaindik/funda-neighbourhoods
URL Halaman Bantuan https://github.com/nikitaindik/funda-neighbourhoods
URL Halaman Kebijakan Privasi https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
Bahasa yang Didukung 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"
}