Right-Click Walk Score
Display the Walk Score of any address
Right-Click Walk Score란 무엇입니까?
Right-Click Walk Score은(는) https://www.sarahhagstrom.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display the Walk Score of any address"입니다.
확장 프로그램 스크린샷
Right-Click Walk Score 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Right-Click Walk Score Chrome extension allows you to get the Walk Score of any address just by selecting it, right-clicking (or ctrl-clicking), and choosing "Get Walk Score for this address" from the context menu. It works not only on addresses but also on city names, neighborhood names, and zip codes. By default, the extension pops up a small summary window displaying just the walk, transit, and bike score badges. You can click through to the full detailed view from there. You may configure the extension to skip the summary popup window and load the full Walk Score page directly into a new window or tab instead. If you will be searching in only one city, you may also configure the extension to always qualify searches with that city name. This expands the functionality of the extension so it can cope more impressively with incomplete addresses and unqualified neighborhood names. For more details see the README file on the GitHub repo: https://github.com/sarahhagstrom/chrome-walkscore/blob/master/README.md
확장 프로그램 기본 정보
이름 | Right-Click Walk Score |
ID | glgonbiicgapabdbfooolnobnjmjleim |
공식 URL | https://chromewebstore.google.com/detail/right-click-walk-score/glgonbiicgapabdbfooolnobnjmjleim |
설명 | Display the Walk Score of any address |
파일 크기 | 1.58 MB |
설치 횟수 | 61 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2013-11-13 |
출시 날짜 | 2013-11-12 |
평점 | 2.50/5 총 4 개의 평점 |
개발자 | https://www.sarahhagstrom.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sarahhagstrom/chrome-walkscore |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Right-Click Walk Score", "description": "Display the Walk Score of any address", "homepage_url": "https:\/\/github.com\/sarahhagstrom\/chrome-walkscore\/blob\/master\/README.md", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "version": "1.1.1", "options_page": "options.html", "permissions": [ "contextMenus" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "popup.js" ] } ] } |