Peanut Travel

Display important info such as COVID restrictions, weather and flight delays when booking trips on popular travel sites

Peanut Travel क्या है?

Peanut Travel https://www.trypeanut.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display important info such as COVID restrictions, weather and flight delays when booking trips on popular travel sites"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Peanut Travel एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Travel tips as you shop on Expedia, Google Flights and Booking.com to avoid mistakes. 

Pick the best flights or hotels with Peanut. 

Join hundreds of travelers who trust Peanut to make decisions and book faster & more confidently. 

✔️ Travel requirements for every destination, simplified for you
✔️ Cancellation predictions as you shop for flights before you buy 
✔️ 'On the ground' COVID-19 risk information for domestic US destinations 
✔️ Visa requirements for every country
✔️ much more — we release new features every few weeks!

Where does Peanut work?
🌍 Globally, For all travelers shopping on Expedia, Booking or Google Flights. 

🥜 Peanut is easy to use ✈️
1. Add to Chrome
2. Visit Expedia, Booking.com or Google Flights and see Peanut insights as you shop 

Oh. And one more thing -- Peanut is completely free, forever. 

🔒 Peanut does not store or sell any personally identifiable information. No account is required to use Peanut.  We take privacy and security seriously. Peanut only works on travel sites to help book better trips. We don’t give a nut-butter about what you do on the internet, truly. 

All product names, logos, brands, trademarks and registered trademarks are property of their respective owners. All company, product and service names used are for identification purposes only. Use of these names, trademarks and brands does not imply endorsement.                    

एक्सटेंशन की मूल जानकारी

नाम Peanut Travel Peanut Travel
ID eaehehmfckfdkanbnbhpmciellgfbgmf
आधिकारिक URL https://chromewebstore.google.com/detail/peanut-travel/eaehehmfckfdkanbnbhpmciellgfbgmf
विवरण Display important info such as COVID restrictions, weather and flight delays when booking trips on popular travel sites
फ़ाइल का आकार 765 KB
स्थापना संख्या 948
वर्तमान संस्करण 1.3.2
अंतिम अपडेट 2022-06-11
प्रकाशन तिथि 2021-05-21
रेटिंग 5.00/5 कुल 9 रेटिंग्स
डेवलपर https://www.trypeanut.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://trypeanut.com
गोपनीयता नीति पृष्ठ URL https://www.trypeanut.com/product/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Display important info such as COVID restrictions, weather and flight delays when booking trips on popular travel sites",
    "version": "1.3.2",
    "manifest_version": 3,
    "name": "Peanut Travel",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.expedia.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "expedia.bundle.js",
                "expediaHotels.bundle.js",
                "contentScript.bundle.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.booking.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "booking.bundle.js",
                "bookingHotels.bundle.js",
                "contentScript.bundle.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "include_globs": [
                "*google.com\/flights*",
                "*google.com\/travel*"
            ],
            "run_at": "document_end",
            "js": [
                "google.bundle.js",
                "googleHotels.bundle.js",
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "global.css",
                "*.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.trypeanut.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self",
        "worker-src": "self"
    }
}