Funda Neighbourhoods
Adds helpful information about neighbourhood to house / apartment pages on funda.nl
Vad är Funda Neighbourhoods?
Funda Neighbourhoods är en Chrome-tillägg utvecklad av Nikita Indik, och dess huvudfunktion är "Adds helpful information about neighbourhood to house / apartment pages on funda.nl".
Tilläggsskärmbilder
Ladda ner Funda Neighbourhoods-förlängningens CRX-fil
Ladda ner Funda Neighbourhoods-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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).
Grundläggande Information om Tillägg
Namn | Funda Neighbourhoods |
ID | jibdjhaojkpiagiccmolddmlhllancgj |
Officiell webbadress | https://chromewebstore.google.com/detail/funda-neighbourhoods/jibdjhaojkpiagiccmolddmlhllancgj |
Beskrivning | Adds helpful information about neighbourhood to house / apartment pages on funda.nl |
Filstorlek | 40.33 KB |
Antal Installationer | 1,663 |
Aktuell Version | 0.6.1 |
Senast Uppdaterad | 2022-04-01 |
Publiceringsdatum | 2020-05-03 |
Betyg | 4.00/5 Totalt 6 Betyg |
Utvecklare | Nikita Indik |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/nikitaindik/funda-neighbourhoods |
Hjälpsida URL | https://github.com/nikitaindik/funda-neighbourhoods |
URL till Sekretesspolicy Sidan | https://raw.githubusercontent.com/nikitaindik/funda-neighbourhoods/master/PRIVACY.md |
Stödda Språk | 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" } |