Pinstriped meeting
Schedule Pinstriped meetings from your Google Calendar
Что такое Pinstriped meeting?
Pinstriped meeting - это расширение Chrome, разработанное https://pinstriped.com, и его основная функция - "Schedule Pinstriped meetings from your Google Calendar".
Снимки экрана расширения
Скачать файл CRX расширения Pinstriped meeting
Скачайте файлы расширений Pinstriped meeting в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Pinstriped is the easy way to prepare and run successful meetings. With the Pinstriped Chrome Extension, you can easily create new meetings in Pinstriped, right from your Google Calendar. Now, you don't need to import meetings into Pinstriped; they'll automatically appear there, just by clicking the Pinstriped button in Google Calendar when creating a new event. Pinstriped is focused on helping you prepare, run, and follow up on your meetings, and preparation just got a whole lot easier with the Pinstriped Chrome Extension.
Основная информация о расширении
Название | Pinstriped meeting |
ID | fpkblaebgpaefagcaklfioaimplnfjoj |
Официальный URL | https://chromewebstore.google.com/detail/pinstriped-meeting/fpkblaebgpaefagcaklfioaimplnfjoj |
Описание | Schedule Pinstriped meetings from your Google Calendar |
Размер файла | 190 KB |
Количество установок | 70 |
Текущая Версия | 1.6.2 |
Последнее Обновление | 2019-10-30 |
Дата публикации | 2019-10-30 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | https://pinstriped.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://help.pinstriped.com |
URL страницы политики конфиденциальности | https://pinstriped.com/policy.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pinstriped meeting", "version": "1.6.2", "default_locale": "en", "description": "Schedule Pinstriped meetings from your Google Calendar", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "author": { "name": "Ejaz Bawasa", "email": "[email protected]" }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Pinstriped" }, "background": { "persistent": false, "scripts": [ "libs\/config.js", "libs\/psgm.js", "libs\/server.js" ] }, "permissions": [ "identity", "https:\/\/pinstriped.com\/" ], "content_scripts": [ { "matches": [ "http:\/\/calendar.google.com\/*", "https:\/\/calendar.google.com\/*" ], "css": [ "tailwind.css" ], "js": [ "main.js" ], "run_at": "document_end" } ] } |