AwardTravel

You don't have to be a millionaire to travel like one!

Wat is AwardTravel?

AwardTravel is een Chrome-extensie ontwikkeld door https://awardtravel.co, en de belangrijkste functie is "You don't have to be a millionaire to travel like one!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie AwardTravel

Download AwardTravel-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        AwardTravel is your ultimate companion for turning credit card points and airline miles into real travel experiences, all within Google Flights.

🌐 POINTS & MILES INTEGRATION WITH GOOGLE FLIGHTS

AwardTravel seamlessly integrates with Google Flights, displaying the cost of flights in points & miles. Our extension supports all major US carriers and is constantly updated with more options. No more searching 20 different airlines or manual calculations; see the points needed for your dream trip right within Google Flights!

✈️ EASY-TO-USE, NO-SIGNUP REQUIRED

With its user-friendly interface, AwardTravel is as simple as it gets. Just add the extension to your Chrome browser, and you're ready to maximize your points and miles.

🔄 TRANSFER PARTNER GUIDANCE

Unsure about the best way to use your points? AwardTravel offers suggestions for transfer partners, ensuring you always get the best value for your points. This feature is particularly handy when you're short on airline miles but rich in credit card rewards.

🔗 DIRECT AIRLINE BOOKING LINKS

Say goodbye to intermediaries and online travel agents (OTAs) that take a commission. AwardTravel provides direct links to book flights with airlines, streamlining your booking process and ensuring you get the most out of your points and miles.

🌟 POINTS OPTIMIZATION FOR EVERY TRAVELER

Whether you're a frequent flyer or an occasional traveler, AwardTravel is designed for everyone holding transferable rewards currencies like Chase, Citi, Amex, Bilt, and Capital One. Our tool is tailored for casual travelers looking to use your points, making luxury and budget travel more accessible.

🔍 TRANSPARENT, INFORMED TRAVEL PLANNING

With AwardTravel, you'll always know the exact value of your points in the context of real flight options. Our extension empowers you to make informed decisions, helping you plan trips that align with your points strategy.

AwardTravel is committed to transforming how you travel with points and miles. Experience the future of travel planning - download AwardTravel today and embark on a journey of maximized rewards and effortless trip planning!                    

Basisinformatie over de Extensie

Naam AwardTravel AwardTravel
ID olkajojhnkcmkfpkblpicjmhcajamncd
Officiële URL https://chromewebstore.google.com/detail/awardtravel/olkajojhnkcmkfpkblpicjmhcajamncd
Beschrijving You don't have to be a millionaire to travel like one!
Bestandsgrootte 685 KB
Aantal Installaties 1,017
Huidige Versie 1.2.5
Laatst Bijgewerkt 2024-02-13
Publicatiedatum 2023-12-17
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar https://awardtravel.co
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.awardtravel.co
Help Pagina-URL https://www.awardtravel.co/contact
URL van de Privacybeleid Pagina https://www.awardtravel.co/privacy-policy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AwardTravel",
    "description": "You don't have to be a millionaire to travel like one!",
    "version": "1.2.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "contentscript.js",
                "search.js",
                "booking.js",
                "styles.css",
                "popup-sign-in.html",
                "popup-sign-out.html",
                "popup-welcome-back.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.awardtravel.co\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/travel\/flights\/search?*"
            ],
            "js": [
                "search.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/www.google.com\/travel\/flights\/booking?*"
            ],
            "js": [
                "booking.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.google.com\/travel\/search?*"
            ],
            "js": [
                "google_hotels.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.awardtravel.co\/*"
            ],
            "js": [
                "sync_with_webapp.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.marriott.com\/*",
                "*:\/\/www.hyatt.com\/*",
                "*:\/\/www.ihg.com\/*",
                "*:\/\/www.hilton.com\/*"
            ],
            "js": [
                "hotels_booking.js"
            ]
        }
    ],
    "permissions": [
        "background",
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.google.com\/travel\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/at_frame16.png",
            "32": "\/images\/at_frame32.png",
            "48": "\/images\/at_frame48.png",
            "128": "\/images\/at_frame128.png"
        }
    },
    "icons": {
        "16": "\/images\/at_frame16.png",
        "32": "\/images\/at_frame32.png",
        "48": "\/images\/at_frame48.png",
        "128": "\/images\/at_frame128.png"
    }
}