Funda Neighbourhoods

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

Funda Neighbourhoodsคืออะไร?

Funda Neighbourhoods เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nikita Indik และคุณลักษณะหลักของมันคือ "Adds helpful information about neighbourhood to house / apartment pages on funda.nl"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Funda Neighbourhoods

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}