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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}