Funda Neighbourhoods
Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Funda Neighbourhoods là gì?
Funda Neighbourhoods là một tiện ích mở rộng Chrome được phát triển bởi Nikita Indik, và tính năng chính của nó là "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Funda Neighbourhoods
Tải xuống các tệp mở rộng Funda Neighbourhoods dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Funda Neighbourhoods |
ID | jibdjhaojkpiagiccmolddmlhllancgj |
URL Chính Thức | https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj |
Mô tả | Adds helpful information about neighbourhood to house / apartment pages on funda.nl |
Kích Thước Tệp | 40.33 KB |
Số Lần Cài Đặt | 1,663 |
Phiên Bản Hiện Tại | 0.6.1 |
Cập Nhật Lần Cuối | 2022-04-01 |
Ngày Phát Hành | 2020-05-03 |
Đánh Giá | 4.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Nikita Indik |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nikitaindik/funda-neighbourhoods |
URL Trang Trợ Giúp | https://github.com/nikitaindik/funda-neighbourhoods |
URL Trang Chính Sách Bảo Mật | https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } |