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”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Right-Click Walk Score擴展crx文件

下載Right-Click Walk Score擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Right-Click Walk Score
ID glgonbiicgapabdbfooolnobnjmjleim
官方網址 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"
            ]
        }
    ]
}