Airbnb Message Template

Airbnb Saved Message Templating

Airbnb Message Templateとは何ですか?

Airbnb Message TemplateはAndy Galassiによって開発されたChromeの拡張機能で、その主な機能は「Airbnb Saved Message Templating」です。

拡張機能のスクリーンショット

screenshot

Airbnb Message Template拡張機能のCRXファイルをダウンロード

Airbnb Message Template拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        As an Airbnb host, you will be posting a lot of messages to communicate with your guests. AirMessage can help you save times copying and retyping guest information. AirMessage is turning the "Saved Message" into the Templated messages. 

Currently there are three built-in template fields.

{{firstname}} = Guest First Name
{{checkindate}} = Guest Check-in Date
{{checkoutdate}} = Guest Check-date Date

However, you can also add your own customized items by adding a new message with title 

'0data'

then enter multiple comma separated key-value pairs using following pattern

|!|"name":"value","name":"value","name":"value"|!|

Example:

|!|"sig":"Bob","city":"Tampa"|!|

You will need to reload the browser page for the updated custom template fields to take effect.                    

拡張機能の基本情報

名前 Airbnb Message Template Airbnb Message Template
ID nalpdinkhhepeeoofajlcdgmlhmikkgf
公式URL https://chromewebstore.google.com/detail/airbnb-message-template/nalpdinkhhepeeoofajlcdgmlhmikkgf
説明 Airbnb Saved Message Templating
ファイルサイズ 56.47 KB
インストール数 340
現在のバージョン 0.1.9
最終更新日 2018-12-20
公開日 2018-12-20
開発者 Andy Galassi
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Airbnb Message Template",
    "version": "0.1.9",
    "manifest_version": 2,
    "description": "Airbnb Saved Message Templating",
    "homepage_url": "https:\/\/airbnb.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Airbnb Saved Message Templating"
    },
    "chrome_url_overrides": {
        "newtab": "src\/override\/override.html"
    },
    "permissions": [
        "https:\/\/*.airbnb.com\/z\/q\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.airbnb.com\/z\/q\/*",
                "http:\/\/localhost:3000\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "src\/inject\/jquery.js",
                "src\/inject\/arrive.js"
            ]
        }
    ]
}