AirDNA - MarketMinder Chrome Extension
Tools for real estate market insights
AirDNA - MarketMinder Chrome Extensionとは何ですか?
AirDNA - MarketMinder Chrome ExtensionはAirDNAによって開発されたChromeの拡張機能で、その主な機能は「Tools for real estate market insights」です。
拡張機能のスクリーンショット
AirDNA - MarketMinder Chrome Extension拡張機能のCRXファイルをダウンロード
AirDNA - MarketMinder Chrome Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Short term rental market insights for Zillow, Redfin and more 拡張機能の基本情報
| 名前 | |
| ID | ibcfpkcamncjmjapmplmfmkdmlghlhhf |
| 公式URL | https://chromewebstore.google.com/detail/airdna-marketminder-chrom/ibcfpkcamncjmjapmplmfmkdmlghlhhf |
| 説明 | Tools for real estate market insights |
| ファイルサイズ | 18.63 KB |
| インストール数 | 113 |
| 現在のバージョン | 0.0.6 |
| 最終更新日 | 2023-02-19 |
| 公開日 | 2023-02-17 |
| 開発者 | AirDNA |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://airdna.co |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "AirDNA - MarketMinder Chrome Extension",
"description": "Tools for real estate market insights",
"version": "0.0.6",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"options_page": "settings\/settings.html",
"action": {
"default_icon": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"default_title": "AirDNA",
"default_popup": "popup\/popup.html"
},
"background": {
"service_worker": "background\/service-worker.js"
},
"content_scripts": [
{
"run_at": "document_start",
"js": [
"before.js"
],
"matches": [
"https:\/\/www.zillow.com\/*"
]
},
{
"run_at": "document_idle",
"js": [
"after.js"
],
"matches": [
"https:\/\/www.zillow.com\/*"
]
}
]
} | |