Highlight to Google Calendar
Highlight text and open popup to automatically add events to google calendar.
ما هو Highlight to Google Calendar؟
Highlight to Google Calendar هو إضافة Chrome تم تطويرها بواسطة bazeblackwood، والميزة الرئيسية لها هي "Highlight text and open popup to automatically add events to google calendar.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Highlight to Google Calendar
قم بتنزيل ملفات الامتداد Highlight to Google Calendar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A chrome extension that allows you to turn highlighted text into Google Calendar events. (Google Calendar used to do this automatically when entering events, but no longer 😿) Simply highlight some text with an event date and time in it, and the result will be in the popup when you click the extension icon when you click the top right. The extension will generate a shorter a title for you, and put the remaining details in the description of the event. Click "Create Event" after a successful parse and it will take you to the event creation dialog in Google Calendar.
معلومات أساسية عن التمديد
الاسم | |
ID | eehlbikncmbbmebknibmlajbmhjiepbh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/highlight-to-google-calen/eehlbikncmbbmebknibmlajbmhjiepbh |
الوصف | Highlight text and open popup to automatically add events to google calendar. |
حجم الملف | 295 KB |
عدد التثبيتات | 616 |
النسخة الحالية | 1.0 |
آخر تحديث | 2018-06-03 |
تاريخ النشر | 2018-06-02 |
تقييم | 3.86/5 مجموع تقييمات 7 |
المطور | bazeblackwood |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://blackwood.io |
عنوان صفحة المساعدة | https://github.com/blackwood/highlight-to-google-calendar/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Highlight to Google Calendar", "description": "Highlight text and open popup to automatically add events to google calendar.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "src\/popup.html" }, "permissions": [ "activeTab", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/build\/main.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |