Google Calendar Color
Adds color to weekends in Google Calendar
ما هو Google Calendar Color؟
Google Calendar Color هو إضافة Chrome تم تطويرها بواسطة Mai Nakagawa، والميزة الرئيسية لها هي "Adds color to weekends in Google Calendar".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Calendar Color
قم بتنزيل ملفات الامتداد Google Calendar Color بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Colorizes weekends not only in Google Calendar but in Google Tasks. The source code is hosted at https://github.com/mai-nakagawa/google-calendar-color
معلومات أساسية عن التمديد
الاسم | |
ID | dgpackgbkgdjgchmdodmaaildnpnbdph |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph |
الوصف | Adds color to weekends in Google Calendar |
حجم الملف | 35.05 KB |
عدد التثبيتات | 1,000 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2016-10-03 |
تاريخ النشر | 2016-10-03 |
تقييم | 1.20/5 مجموع تقييمات 5 |
المطور | Mai Nakagawa |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Calendar Color", "description": "Adds color to weekends in Google Calendar", "version": "1.2.0", "browser_action": { "default_title": "Edit the color scheme", "default_popup": "html\/popup.html" }, "icons": { "16": "images\/calendar.png", "48": "images\/calendar.png", "128": "images\/calendar.png" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "js\/content_script.js" ] } ], "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "permissions": [ "webNavigation", "tabs", "storage", "https:\/\/calendar.google.com\/*", "https:\/\/mail.google.com\/*", "http:\/\/localhost\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |