WTA Enhancer

Adds information about trip time, weather, and more to wta.org hike description pages

WTA Enhancer là gì?

WTA Enhancer là một tiện ích mở rộng Chrome được phát triển bởi bbergerdev, và tính năng chính của nó là "Adds information about trip time, weather, and more to wta.org hike description pages".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WTA Enhancer

Tải xuống các tệp mở rộng WTA Enhancer 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

                        Tired of opening another browser tab to find out how long it would take you to get to the trailhead? Have difficulty finding the weather forecast for a hike? WTA Enhancer makes this information easy to find without ever leaving wta.org.

* Displays how long it would take to drive to the trailhead
* Links to Google Maps directions to the trailhead from your home or preferred landmark
* Links to hike descriptions directly from the Trip Reports page
* Links to weather information for the trail provided by WeatherUnderground.com
* Computes average gain/mile
* Displays the number of trip reports available for a hike
* Displays the date of the last trip report

I don't do anything sketchy with the home address you provide but feel free to use any location you want; it doesn't need to be your actual address.                    

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

Tên WTA Enhancer WTA Enhancer
ID dnhgkkdimbnodnlccmhcfbogbhkkhbja
URL Chính Thức https://chromewebstore.google.com/detail/wta-enhancer/dnhgkkdimbnodnlccmhcfbogbhkkhbja
Mô tả Adds information about trip time, weather, and more to wta.org hike description pages
Kích Thước Tệp 59.9 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 0.0.0.4
Cập Nhật Lần Cuối 2018-09-29
Ngày Phát Hành 2018-09-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển bbergerdev
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WTA Enhancer",
    "short_name": "WTA++",
    "description": "Adds information about trip time, weather, and more to wta.org hike description pages",
    "version": "0.0.0.4",
    "icons": {
        "128": "img\/WTA++.png"
    },
    "author": "bberger",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.wta.org\/*go-hiking\/hikes\/*",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "lib\/jquery-2.2.0.min.js",
                "descriptionEnhancer.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.wta.org\/go-hiking\/trip-reports*"
            ],
            "js": [
                "lib\/jquery-2.2.0.min.js",
                "tripReportEnhancer.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/*.googleapis.com\/; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "hikeLookup.json"
    ]
}