Vali property valuation
Vali adds a property valuation estimate to real estate listings. Ever been frustrated by a listing with no price indication?…
什么是Vali property valuation?
Vali property valuation是由Vali开发的Chrome扩展程序,该扩展的主要功能是“Vali adds a property valuation estimate to real estate listings. Ever been frustrated by a listing with no price indication?…”。
扩展截图
下载Vali property valuation扩展crx文件
下载Vali property valuation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Vali adds a property valuation estimate to real estate listings.
Ever been frustrated by a listing with no price indication? Install Vali to have an estimate right there on the for sale page. Works on realestate.com.au and domain. 扩展基本信息
| 名称 | |
| ID | kjmejadpokndcieffgendnafognhgimj |
| 官方URL | https://chromewebstore.google.com/detail/vali-property-valuation/kjmejadpokndcieffgendnafognhgimj |
| 简介 | Vali adds a property valuation estimate to real estate listings. Ever been frustrated by a listing with no price indication?… |
| 文件大小 | 49.84 KB |
| 安装次数 | 821 |
| 当前版本 | 0.1.8 |
| 更新时间 | 2022-06-02 |
| 上架时间 | 2020-12-19 |
| 评分 | 4.54/5 共13次评分 |
| 开发者 | Vali |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://www.vali.com.au |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Vali property valuation",
"version": "0.1.8",
"icons": {
"16": ".\/assets\/icon_16.png",
"32": ".\/assets\/icon_32.png",
"48": ".\/assets\/icon_48.png",
"128": ".\/assets\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.realestate.com.au\/*"
],
"js": [
".\/libs\/jquery-3.5.1.min.js",
".\/content\/realestate.js",
".\/content\/common.js"
],
"css": [
".\/content\/styles.css"
]
},
{
"matches": [
"https:\/\/*.realestate.com.au\/sold\/*"
],
"js": [
".\/libs\/jquery-3.5.1.min.js",
".\/content\/realestate_sold_prices.js",
".\/content\/common.js"
],
"css": [
".\/content\/pageModifications.css"
]
},
{
"matches": [
"https:\/\/*.domain.com.au\/*"
],
"js": [
".\/libs\/jquery-3.5.1.min.js",
".\/content\/domain.js",
".\/content\/common.js"
],
"css": [
".\/content\/styles.css"
]
}
],
"background": {
"scripts": [
".\/libs\/jquery-3.5.1.min.js",
".\/background\/script.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"web_accessible_resources": [
"assets\/*",
"content\/domain_injectable.js"
]
} | |