Airbnb Message Template
Airbnb Saved Message Templating
ما هو Airbnb Message Template؟
Airbnb Message Template هو إضافة Chrome تم تطويرها بواسطة Andy Galassi، والميزة الرئيسية لها هي "Airbnb Saved Message Templating".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Airbnb Message Template
قم بتنزيل ملفات الامتداد Airbnb Message Template بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } ] } |