Add to Calendar
Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Cos'è Add to Calendar?
Add to Calendar è un'estensione di Chrome sviluppata da Nabheet Madan, e la sua funzione principale è "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Add to Calendar
Scarica i file di estensione Add to Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Add to Calendar |
ID | oghjdgibcijneidbooifphlcjhnmffcj |
URL Ufficiale | https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj |
Descrizione | Create appointment in google calendar, copies the title of the page in subject and url in body automatically |
Dimensione del File | 6.28 KB |
Conteggio Installazioni | 26 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2018-09-22 |
Data di Pubblicazione | 2018-09-22 |
Sviluppatore | Nabheet Madan |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |