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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension reminds users to visit leaveatrace.co at relevant times"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Leave A Trace Reminder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |