Add to Calendar
Create appointment in google calendar, copies the title of the page in subject and url in body automatically
What is Add to Calendar?
Add to Calendar is a Chrome extension developed by Nabheet Madan, and its main feature is "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".
Extension Screenshots
Download Add to Calendar Extension CRX File
Download Add to Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Add to Calendar |
ID | oghjdgibcijneidbooifphlcjhnmffcj |
Official URL | https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj |
Description | Create appointment in google calendar, copies the title of the page in subject and url in body automatically |
File Size | 6.28 KB |
Installation Count | 26 |
Current Version | 1.0.0 |
Last Updated | 2018-09-22 |
Publish Date | 2018-09-22 |
Developer | Nabheet Madan |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |