Home Scanner

Scan homes in a radius

Wat is Home Scanner?

Home Scanner is een Chrome-extensie ontwikkeld door https://justinschultz.dev, en de belangrijkste functie is "Scan homes in a radius".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Home Scanner

Download Home Scanner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Home Scanner Home Scanner
ID jemdonaaoheinklbabmnaolfjdcllfok
Officiële URL https://chromewebstore.google.com/detail/home-scanner/jemdonaaoheinklbabmnaolfjdcllfok
Beschrijving Scan homes in a radius
Bestandsgrootte 3.36 MB
Aantal Installaties 81
Huidige Versie 2.0.2
Laatst Bijgewerkt 2024-02-01
Publicatiedatum 2020-06-20
Beoordeling 5.00/5 Totaal 8 Beoordelingen
Ontwikkelaar https://justinschultz.dev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}