Home Scanner
Scan homes in a radius
Home Scannerคืออะไร?
Home Scanner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://justinschultz.dev และคุณลักษณะหลักของมันคือ "Scan homes in a radius"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Home Scanner
ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*" ] } ] } |