Google Calendar Color
Adds color to weekends in Google Calendar
Hvad er Google Calendar Color?
Google Calendar Color er en Chrome-udvidelse udviklet af Mai Nakagawa, og dens hovedfunktion er "Adds color to weekends in Google Calendar".
Udvidelsesskærmbilleder
Download Google Calendar Color-udvidelses-CRX-fil
Download Google Calendar Color-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | dgpackgbkgdjgchmdodmaaildnpnbdph |
| Officiel URL | https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph |
| Beskrivelse | Adds color to weekends in Google Calendar |
| Filstørrelse | 35.05 KB |
| Antal Installationer | 1,000 |
| Nuværende Version | 1.2.0 |
| Senest Opdateret | 2016-10-03 |
| Udgivelsesdato | 2016-10-03 |
| Bedømmelse | 1.20/5 Samlet 5 Bedømmelser |
| Udvikler | Mai Nakagawa |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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
} | |