Leave A Trace Reminder

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

Leave A Trace Reminderคืออะไร?

Leave A Trace Reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.leaveatrace.co และคุณลักษณะหลักของมันคือ "This extension reminds users to visit leaveatrace.co at relevant times"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Leave A Trace Reminder

ดาวน์โหลดไฟล์ส่วนขยาย Leave A Trace Reminder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}