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
扩展基本信息
名称 | AirDNA - MarketMinder Chrome Extension |
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 |
电子邮箱 | [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\/*" ] } ] } |