WTA Enhancer

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

WTA Enhancer란 무엇입니까?

WTA Enhancer은(는) bbergerdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds information about trip time, weather, and more to wta.org hike description pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

WTA Enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 WTA Enhancer WTA Enhancer
ID dnhgkkdimbnodnlccmhcfbogbhkkhbja
공식 URL https://chromewebstore.google.com/detail/wta-enhancer/dnhgkkdimbnodnlccmhcfbogbhkkhbja
설명 Adds information about trip time, weather, and more to wta.org hike description pages
파일 크기 59.9 KB
설치 횟수 49
현재 버전 0.0.0.4
최근 업데이트 2018-09-29
출시 날짜 2018-09-28
평점 5.00/5 총 2 개의 평점
개발자 bbergerdev
결제 유형 free
지원되는 언어 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"
    ]
}