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 } |