Home Scanner

Scan homes in a radius

Qu'est-ce que Home Scanner ?

Home Scanner est une extension Chrome développée par https://justinschultz.dev, et sa fonction principale est "Scan homes in a radius".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Home Scanner

Téléchargez les fichiers d'extension Home Scanner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Home Scanner

Augments Google Maps to display Zillow info and images for each address. Also includes Streetview images.

Each listing contains:
+Address
+Home Type
+Assessed Value
+Coordinates
+Square Footage
+Beds/Baths
+Distance from pinpoint

How to Use:
Right click within Google Maps and click the Home Scanner button.                    

Informations de Base sur l'Extension

Nom Home Scanner Home Scanner
ID jemdonaaoheinklbabmnaolfjdcllfok
URL Officiel https://chromewebstore.google.com/detail/home-scanner/jemdonaaoheinklbabmnaolfjdcllfok
Description Scan homes in a radius
Taille du Fichier 3.36 MB
Nombre d'Installations 81
Version Actuelle 2.0.2
Dernière Mise à Jour 2024-02-01
Date de Publication 2020-06-20
Évaluation 5.00/5 Total 8 Évaluations
Développeur https://justinschultz.dev
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Scan homes in a radius",
    "version": "2.0.2",
    "manifest_version": 3,
    "name": "Home Scanner",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "sidePanel",
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/zillow.com\/*"
    ],
    "action": {
        "default_icon": "homescanner32.png"
    },
    "side_panel": {
        "default_path": "newtab.html"
    },
    "icons": {
        "128": "homescanner128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hostcompliance.com\/*",
                "*:\/\/*.homeaway.com\/*",
                "*:\/\/*.vrbo.com\/*",
                "*:\/\/*.google.com\/maps*",
                "*:\/\/*.google.com\/maps\/place\/*",
                "*:\/\/*.realtor.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*\/newtab.html"
            ],
            "js": [
                "newtab.bundle.js"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "homescanner128.png",
                "homescanner32.png",
                "newtab.html",
                "\/src\/assets\/img\/no-photo.png"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}