Google Calendar Color
Adds color to weekends in Google Calendar
什麼是Google Calendar Color?
Google Calendar Color是由Mai Nakagawa開發的Chrome擴展程式,該擴展的主要功能是“Adds color to weekends in Google Calendar”。
擴展截圖
下載Google Calendar Color擴展crx文件
下載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 |
官方網址 | 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 } |