Right-Click Walk Score

Display the Walk Score of any address

Right-Click Walk Score là gì?

Right-Click Walk Score là một tiện ích mở rộng Chrome được phát triển bởi https://www.sarahhagstrom.com, và tính năng chính của nó là "Display the Walk Score of any address".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Right-Click Walk Score

Tải xuống các tệp mở rộng Right-Click Walk Score dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Right-Click Walk Score Right-Click Walk Score
ID glgonbiicgapabdbfooolnobnjmjleim
URL Chính Thức https://chromewebstore.google.com/detail/right-click-walk-score/glgonbiicgapabdbfooolnobnjmjleim
Mô tả Display the Walk Score of any address
Kích Thước Tệp 1.58 MB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2013-11-13
Ngày Phát Hành 2013-11-12
Đánh Giá 2.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://www.sarahhagstrom.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sarahhagstrom/chrome-walkscore
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}