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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/nikitaindik/funda-neighbourhoods
عنوان صفحة سياسة الخصوصية 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"
}