switchCalender
Toggle Google Calendar to display with Click
ما هو switchCalender؟
switchCalender هو إضافة Chrome تم تطويرها بواسطة Nimble-Work، والميزة الرئيسية لها هي "Toggle Google Calendar to display with Click".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة switchCalender
قم بتنزيل ملفات الامتداد switchCalender بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Googleカレンダーで、多くのカレンダーを表示している場合、必要なカレンダーだけを表示することが面倒です。 SwitchCalenderは、そんな場面でGoogleカレンダーをもっと便利に使う為の拡張機能です。 表示するカレンダーに、会社や組織、所属チームなどのグループ名を付けて保存することができます。 グループ名をクリックすることで保存したカレンダーを表示することができます。 ※クリックを連打する必要があります また、アカウントへの接続や閲覧履歴の取得を必要としないため、安心です。 これで毎日の煩わしさから解放されます。ぜひお試しください。 -------------------- If you are displaying a lot of calendars in Google Calendar, it is troublesome to display only the calendars you need. SwitchCalender is an extension to make Google Calendar more useful in such situations. You can save the calendar to be displayed with the group name such as company, organization, team you belong to. By clicking the group name you can display the saved calendar. ※ You need to hit repeated clicks This frees us from the annoying everyday. Please try. Moreover, it does not need connection to the account and acquisition of browsing history, so it is safe.
معلومات أساسية عن التمديد
الاسم | |
ID | mjoafpffhnpekihpmbhhnggnhgmoakon |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/switchcalender/mjoafpffhnpekihpmbhhnggnhgmoakon |
الوصف | Toggle Google Calendar to display with Click |
حجم الملف | 654 KB |
عدد التثبيتات | 41 |
النسخة الحالية | 1.0 |
آخر تحديث | 2017-12-19 |
تاريخ النشر | 2017-12-19 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Nimble-Work |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "switchCalender", "description": "Toggle Google Calendar to display with Click", "version": "1.0", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "icons": { "16": "images\/SC-19.png", "48": "images\/SC-48.png", "128": "images\/SC-128.png" }, "background": { "scripts": [ "jquery-2.1.4.min.js", "background.js" ] }, "browser_action": { "default_icon": "images\/SC-19.png", "default_title": "SwitchCalender setting", "name": "SwitchCalender", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/calendar\/render*" ], "js": [ "jquery-2.1.4.min.js", "content_scripts.js" ] } ] } |