Funda Neighbourhoods

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

什么是Funda Neighbourhoods?

Funda Neighbourhoods是由Nikita Indik开发的Chrome扩展程序,该扩展的主要功能是“Adds helpful information about neighbourhood to house / apartment pages on funda.nl”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Funda Neighbourhoods扩展crx文件

下载Funda Neighbourhoods扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Funda Neighbourhoods Funda Neighbourhoods
ID jibdjhaojkpiagiccmolddmlhllancgj
官方URL https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj
简介 Adds helpful information about neighbourhood to house / apartment pages on funda.nl
文件大小 40.33 KB
安装次数 1,663
当前版本 0.6.1
更新时间 2022-04-01
上架时间 2020-05-03
评分 4.00/5 共6次评分
开发者 Nikita Indik
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/nikitaindik/funda-neighbourhoods
帮助页面URL https://github.com/nikitaindik/funda-neighbourhoods
隐私政策页面URL https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md
支持的语言 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"
}