Sillow
Embed Google Street View on Zillow details pages
什么是Sillow?
Sillow是由stevenaenns开发的Chrome扩展程序,该扩展的主要功能是“Embed Google Street View on Zillow details pages”。
扩展截图
下载Sillow扩展crx文件
下载Sillow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Embeds google street view in Zillow details pages so you don't have to copy and paste the address in google maps. 扩展基本信息
| 名称 | |
| ID | mcopjjconlipffbfdfbfmjhlaekggocd |
| 官方URL | https://chrome.google.com/webstore/detail/sillow/mcopjjconlipffbfdfbfmjhlaekggocd |
| 简介 | Embed Google Street View on Zillow details pages |
| 文件大小 | 10.83 KB |
| 安装次数 | 85 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2015-07-14 |
| 上架时间 | 2015-07-14 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | stevenaenns |
| 付费类型 | free |
| 扩展官网 | https://github.com/saenns/sillow |
| 帮助页面URL | https://github.com/saenns/sillow |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Sillow",
"version": "0.1.0",
"description": "Embed Google Street View on Zillow details pages",
"icons": {
"128": "icon.png"
},
"permissions": [
"*:\/\/www.zillow.com\/homedetails\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.zillow.com\/homedetails\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"inject.js"
],
"manifest_version": 2
} | |