Add to Calendar
Create appointment in google calendar, copies the title of the page in subject and url in body automatically
¿Qué es Add to Calendar?
Add to Calendar es una extensión de Chrome desarrollada por Nabheet Madan, y su función principal es "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Add to Calendar
Descarga archivos de extensión Add to Calendar 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
Add to calendar extension allows you create google calendar appointment. It automatically defaults the title of the appointment to the title of the page where you want to create appointment and add the URL of the page to the body of the event. This will help in saving the manual copy/paste as well as person can check details later when reminder come.
Información Básica de la Extensión
Nombre | |
ID | oghjdgibcijneidbooifphlcjhnmffcj |
URL Oficial | https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj |
Descripción | Create appointment in google calendar, copies the title of the page in subject and url in body automatically |
Tamaño del Archivo | 6.28 KB |
Cantidad de Instalaciones | 26 |
Versión Actual | 1.0.0 |
Última Actualización | 2018-09-22 |
Fecha de Publicación | 2018-09-22 |
Desarrollador | Nabheet Madan |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add to Calendar", "version": "1.0.0", "description": "Create appointment in google calendar, copies the title of the page in subject and url in body automatically", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "permissions": [ "contextMenus", "tabs", "activeTab", "storage" ], "icons": { "16": "calendar.png", "48": "calendar.png", "128": "calendar.png" }, "browser_action": { "default_icon": "calendar.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ] } |