Calendar Dots
Change Dot Color to Reflect Event Tag Color
ما هو Calendar Dots؟
Calendar Dots هو إضافة Chrome تم تطويرها بواسطة afree1423، والميزة الرئيسية لها هي "Change Dot Color to Reflect Event Tag Color".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Calendar Dots
قم بتنزيل ملفات الامتداد Calendar Dots بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Google calendar now shows event names in the color of the calendar. This extension uses the new dots next to the event to show whatever color you select for each event (use green to mark as completed, etc). Developed by Addison Freeman (addisonfreeman.com) Sponsored by moveON Moving (https://www.moveonmoving.com) MIT license, source here: https://github.com/AddisonFreeman/Google-Calendar-Dot-Color-Fix
معلومات أساسية عن التمديد
الاسم | Calendar Dots |
ID | idkiplkpioepnfaifnnlknbnafkhcine |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine |
الوصف | Change Dot Color to Reflect Event Tag Color |
حجم الملف | 69.3 KB |
عدد التثبيتات | 89 |
النسخة الحالية | 0.6 |
آخر تحديث | 2019-12-10 |
تاريخ النشر | 2019-12-10 |
المطور | afree1423 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Calendar Dots", "description": "Change Dot Color to Reflect Event Tag Color", "version": "0.6", "icons": { "16": "img\/icon16.png", "19": "img\/icon19.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "\/lib\/jquery.js", "js\/content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/icon128.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/" ] } |