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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 } |