Home Scanner
Scan homes in a radius
什么是Home Scanner?
Home Scanner是由https://justinschultz.dev开发的Chrome扩展程序,该扩展的主要功能是“Scan homes in a radius”。
扩展截图
下载Home Scanner扩展crx文件
下载Home Scanner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | jemdonaaoheinklbabmnaolfjdcllfok |
| 官方URL | https://chromewebstore.google.com/detail/home-scanner/jemdonaaoheinklbabmnaolfjdcllfok |
| 简介 | Scan homes in a radius |
| 文件大小 | 3.36 MB |
| 安装次数 | 81 |
| 当前版本 | 2.0.2 |
| 更新时间 | 2024-02-01 |
| 上架时间 | 2020-06-20 |
| 评分 | 5.00/5 共8次评分 |
| 开发者 | https://justinschultz.dev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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:\/\/*\/*"
]
}
]
} | |