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" } |