Home Scanner
Scan homes in a radius
Home Scanner là gì?
Home Scanner là một tiện ích mở rộng Chrome được phát triển bởi https://justinschultz.dev, và tính năng chính của nó là "Scan homes in a radius".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Home Scanner
Tải xuống các tệp mở rộng Home Scanner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jemdonaaoheinklbabmnaolfjdcllfok |
URL Chính Thức | https://chromewebstore.google.com/detail/home-scanner/jemdonaaoheinklbabmnaolfjdcllfok |
Mô tả | Scan homes in a radius |
Kích Thước Tệp | 3.36 MB |
Số Lần Cài Đặt | 81 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2024-02-01 |
Ngày Phát Hành | 2020-06-20 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://justinschultz.dev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |