AwardTravel

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

Что такое AwardTravel?

AwardTravel - это расширение Chrome, разработанное https://awardtravel.co, и его основная функция - "You don't have to be a millionaire to travel like one!".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения AwardTravel

Скачайте файлы расширений AwardTravel в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название AwardTravel AwardTravel
ID olkajojhnkcmkfpkblpicjmhcajamncd
Официальный URL https://chromewebstore.google.com/detail/awardtravel/olkajojhnkcmkfpkblpicjmhcajamncd
Описание You don't have to be a millionaire to travel like one!
Размер файла 685 KB
Количество установок 1,017
Текущая Версия 1.2.5
Последнее Обновление 2024-02-13
Дата публикации 2023-12-17
Рейтинг 5.00/5 Всего 6 оценок
Разработчик https://awardtravel.co
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.awardtravel.co
URL страницы помощи https://www.awardtravel.co/contact
URL страницы политики конфиденциальности https://www.awardtravel.co/privacy-policy
Поддерживаемые языки 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"
    }
}