AwardTravel

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

什麼是AwardTravel?

AwardTravel是由https://awardtravel.co開發的Chrome擴展程式,該擴展的主要功能是“You don't have to be a millionaire to travel like one!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載AwardTravel擴展crx文件

下載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
官方網址 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"
    }
}