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".
Снимки экрана расширения
Скачать файл 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 |
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" } |