Airbnb Message Template
Airbnb Saved Message Templating
Airbnb Message Template क्या है?
Airbnb Message Template Andy Galassi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Airbnb Saved Message Templating"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Airbnb Message Template एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 |
ईमेल | [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" ] } ] } |