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 |
| Eメール | [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:\/\/*\/*"
]
}
]
} | |