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文件
下载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.
扩展基本信息
名称 | |
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" ] } |