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」です。
拡張機能のスクリーンショット
Funda Neighbourhoods拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } |