Leave A Trace Reminder

This extension reminds users to visit leaveatrace.co at relevant times

Leave A Trace Reminder란 무엇입니까?

Leave A Trace Reminder은(는) http://www.leaveatrace.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension reminds users to visit leaveatrace.co at relevant times"입니다.

확장 프로그램 스크린샷

Leave A Trace Reminder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Leave A Trace is a non-profit travel booking site. 

This extension reminds users to visit leaveatrace.co at relevant times. When you visit a travel booking page, a popup will ask if you're interested in checking out Leave A Trace first. It won't pop up more than once per hour.

Our site allows users to book travel through the world’s most reputable travel brands while also generating donations to impactful charities worldwide. You book your trip, exactly as you always have, but money goes to charity.

Book travel. Give back. Free. It’s really that simple.                    

확장 프로그램 기본 정보

이름 Leave A Trace Reminder Leave A Trace Reminder
ID coblijfbgogagjlmpholhacgldkbaeam
공식 URL https://chrome.google.com/webstore/detail/leave-a-trace-reminder/coblijfbgogagjlmpholhacgldkbaeam
설명 This extension reminds users to visit leaveatrace.co at relevant times
파일 크기 41.55 KB
설치 횟수 13
현재 버전 1.3
최근 업데이트 2016-05-19
출시 날짜 2016-05-19
평점 5.00/5 총 4 개의 평점
개발자 http://www.leaveatrace.co
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.leaveatrace.co
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Leave A Trace Reminder",
    "description": "This extension reminds users to visit leaveatrace.co at relevant times",
    "version": "1.3",
    "icons": {
        "16": "LAT_16.png",
        "48": "LAT_48.png",
        "128": "LAT_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.kayak.com\/*",
                "*:\/\/*.priceline.com\/*",
                "*:\/\/*.expedia.com\/*",
                "*:\/\/*.expedia.ca\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.hotwire.com\/*",
                "*:\/\/*.agoda.com\/*",
                "*:\/\/*.spg.com\/*",
                "*:\/\/*.hostelbookers.com\/*",
                "*:\/\/*.hostelworld.com\/*",
                "*:\/\/*.hotelscombined.com\/*",
                "*:\/\/*.booking.com\/*",
                "*:\/\/*.google.com\/flights\/*",
                "*:\/\/*.google.ca\/flights\/*",
                "*:\/\/*.aircanada.com\/*",
                "*:\/\/*.delta.com\/*",
                "*:\/\/*.united.com\/*",
                "*:\/\/*.aa.com\/*",
                "*:\/\/*.skyscanner.com\/*",
                "*:\/\/*.skyscanner.ca\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_title": "Leave A Trace",
        "default_icon": "LAT_16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}