Pinstriped meeting
Schedule Pinstriped meetings from your Google Calendar
¿Qué es Pinstriped meeting?
Pinstriped meeting es una extensión de Chrome desarrollada por https://pinstriped.com, y su función principal es "Schedule Pinstriped meetings from your Google Calendar".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Pinstriped meeting
Descarga archivos de extensión Pinstriped meeting en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Pinstriped meeting |
ID | fpkblaebgpaefagcaklfioaimplnfjoj |
URL Oficial | https://chromewebstore.google.com/detail/pinstriped-meeting/fpkblaebgpaefagcaklfioaimplnfjoj |
Descripción | Schedule Pinstriped meetings from your Google Calendar |
Tamaño del Archivo | 190 KB |
Cantidad de Instalaciones | 70 |
Versión Actual | 1.6.2 |
Última Actualización | 2019-10-30 |
Fecha de Publicación | 2019-10-30 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | https://pinstriped.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://help.pinstriped.com |
URL de la Página de Política de Privacidad | https://pinstriped.com/policy.html |
Idiomas Soportados | 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" } ] } |