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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |