Walk Score for Redfin and TheMLS.com
Show the Walk Score page for houses listed on Redfin.com and pro.theMLS.com.
Walk Score for Redfin and TheMLS.com란 무엇입니까?
Walk Score for Redfin and TheMLS.com은(는) Simon G.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show the Walk Score page for houses listed on Redfin.com and pro.theMLS.com."입니다.
확장 프로그램 스크린샷
Walk Score for Redfin and TheMLS.com 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Walk Score® (www.walkscore.com) uses Google Maps to calculate how walkable, bikeable, and transit-friendly a house or apartment is. Redfin.com is a real estate site that lists houses and condos for sale. If you're house hunting, you spend a lot of time bouncing back and forth between these two sites. This extension combines the sites. While browsing Redfin.com, clicking on the extension (or using the keyboard shortcut Alt+W [Mac]) pops up a small window displaying the Walk Score page for that house. The extension also supports pro.TheMLS.com, a site that real estate agents use to email listings to their clients. The extension is not associated with Redfin, TheMLS, or Walk Score. The extension does not remove or alter any ads or features from those sites.
확장 프로그램 기본 정보
이름 | Walk Score for Redfin and TheMLS.com |
ID | jjejooaohjgoapilebkhgigocepijmnp |
공식 URL | https://chromewebstore.google.com/detail/walk-score-for-redfin-and/jjejooaohjgoapilebkhgigocepijmnp |
설명 | Show the Walk Score page for houses listed on Redfin.com and pro.theMLS.com. |
파일 크기 | 70.34 KB |
설치 횟수 | 77 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2014-01-12 |
출시 날짜 | 2014-01-11 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Simon G. |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Walk Score for Redfin and TheMLS.com", "short_name": "Walk Score", "description": "Show the Walk Score page for houses listed on Redfin.com and pro.theMLS.com.", "version": "1.0.3", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon-19.png", "default_title": "Show Walk Score", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "jquery-2.0.3.min.js", "address_grabber.js" ], "matches": [ "http:\/\/*.redfin.com\/*", "https:\/\/*.redfin.com\/*", "http:\/\/*.themls.com\/*", "https:\/\/*.themls.com\/*" ] } ], "permissions": [ "tabs" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Alt+W", "windows": "Alt+Shift+W", "mac": "Alt+W" } } } } |