Add to Calendar
Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Τι είναι το Add to Calendar;
Το Add to Calendar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nabheet Madan, και η κύρια λειτουργία του είναι "Create appointment in google calendar, copies the title of the page in subject and url in body automatically".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Add to Calendar
Λήψη αρχείων επέκτασης Add to Calendar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Add to Calendar |
ID | oghjdgibcijneidbooifphlcjhnmffcj |
Επίσημο URL | https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj |
Περιγραφή | Create appointment in google calendar, copies the title of the page in subject and url in body automatically |
Μέγεθος Αρχείου | 6.28 KB |
Αριθμός Εγκαταστάσεων | 26 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2018-09-22 |
Ημερομηνία Δημοσίευσης | 2018-09-22 |
Προγραμματιστής | Nabheet Madan |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } ] } |