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 |
| 公式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 |
| Eメール | [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
} | |