Add to Calendar
Create appointment in google calendar, copies the title of the page in subject and url in body automatically
Co to jest Add to Calendar?
Add to Calendar to rozszerzenie Chrome opracowane przez Nabheet Madan, a jego główną funkcją jest „Create appointment in google calendar, copies the title of the page in subject and url in body automatically”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Add to Calendar
Pobierz pliki rozszerzeń Add to Calendar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Add to Calendar |
ID | oghjdgibcijneidbooifphlcjhnmffcj |
Oficjalny URL | https://chromewebstore.google.com/detail/add-to-calendar/oghjdgibcijneidbooifphlcjhnmffcj |
Opis | Create appointment in google calendar, copies the title of the page in subject and url in body automatically |
Rozmiar pliku | 6.28 KB |
Liczba instalacji | 26 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2018-09-22 |
Data Publikacji | 2018-09-22 |
Deweloper | Nabheet Madan |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |