Hotel Resbot Extension

Extension for Hotel Resbot

Hotel Resbot Extension क्या है?

Hotel Resbot Extension https://hotelresbot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for Hotel Resbot"।

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

screenshot
screenshot

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

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

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

                        HERA, Your Hotel Email Reservation Assistant, scans your incoming emails and sends available offers before your reservation agents even see the email. However, HERA is not able to fully automatically respond to all Emails to your property - some must still be managed by the hotel team. This extension is for use with Gmail and helps you by automatically extracting the key request information from the incoming email. Once you confirm that the extracted info is correct, HERA checks your hotel system for valid offers, puts them in an email and sends them to the requester.

For incoming booking requests all you need to do is double check the information that HERA has read from the Email (eg. Arrival date, Departure date, number of rooms, number of guests, number of children etc.) and click send. HERA will use this data to check your hotel API (setup is required) and automatically send an email (via the HERA service) to the requester with one or more offers based on their request.

This add-in is free to download. To use this add-in your hotel needs a subscription (and some setup) with Hotel Res Bot’s HERA service. If you are interested in signing up for this service you can do so at https://www.hotel-reservation-bot.de/en/ or alternatively contact us directly [email protected].                    

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

नाम Hotel Resbot Extension Hotel Resbot Extension
ID pjgfeacpjmjaiohbdaiodnfgnblgegld
आधिकारिक URL https://chromewebstore.google.com/detail/hotel-resbot-extension/pjgfeacpjmjaiohbdaiodnfgnblgegld
विवरण Extension for Hotel Resbot
फ़ाइल का आकार 483 KB
स्थापना संख्या 89
वर्तमान संस्करण 0.0.9
अंतिम अपडेट 2022-09-16
प्रकाशन तिथि 2020-04-07
डेवलपर https://hotelresbot.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.hotel-reservation-bot.de
सहायता पृष्ठ URL https://www.hotel-reservation-bot.de/support/
गोपनीयता नीति पृष्ठ URL https://www.hotel-reservation-bot.de/de-datenschutz
समर्थित भाषाएँ en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Hotel Resbot Extension",
    "description": "Extension for Hotel Resbot",
    "author": "TK Dallman",
    "short_name": "hotelresbot",
    "version": "0.0.9",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_popup": "src\/options.html"
    },
    "icons": {
        "16": "src\/images\/logo-16x16.png",
        "32": "src\/images\/logo-32x32.png",
        "64": "src\/images\/logo-64x64.png"
    },
    "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/services.cognitoforms.com https:\/\/www.google.com https:\/\/www.gstatic.com https:\/\/www.google-analytics.com https:\/\/www.cognitoforms.com;  style-src 'unsafe-inline' 'self' https:\/\/services.cognitoforms.com https:\/\/fonts.googleapis.com\/ https:\/\/www.cognitoforms.com; object-src 'self'",
    "background": {
        "scripts": [
            "jquery.js",
            "common\/shared-common.js",
            "src\/js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "jquery.js",
                "gmailApi.js",
                "common\/shared-common.js",
                "src\/js\/extensionInjector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/extension.js",
        "src\/options.html",
        "images\/*.*",
        "*.js",
        "\/oauth2\/*",
        "https:\/\/gmail.googleapis.com\/*"
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "https:\/\/inbox.google.com\/*",
        "https:\/\/fh0dptzb66.execute-api.eu-central-1.amazonaws.com\/",
        "background",
        "activeTab",
        "storage",
        "tabs",
        "identity",
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/accounts.google.com\/*",
        "https:\/\/apis.google.com\/*",
        "https:\/\/gmail.googleapis.com\/*"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            "https:\/\/mail.google.com\/*",
            "https:\/\/inbox.google.com\/*"
        ],
        "accepts_tls_channel_id": false
    },
    "oauth2": {
        "client_id": "11409798004-24dpnss5atbrcq622v6075php0m92hbo.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/gmail.readonly"
        ]
    }
}