diff --git a/README.md b/README.md index baad1ce..2698d3c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,31 @@ # Calendar Plus -A Chrome extension for Google Calendar that allows to easily see what you spend -your time, get insights on and set goals +A browser extension for Google Calendar that provides insights into where your time goes. Includes power user tools, data export and customization + +Features: +- Plot your week/month/year using Bar Chart, Pie Chart or a Time Chart +- Adds ability to ghost an event (make it semi transparent and non-interactive) +- Adds ability to condense the interface to have more space for events +- Adds autocomplete for event names when creating events +- Allows to automatically place events into correct calendars based on defined rules +- Supports exporting plotted data and exporting/importing plugin settings + +## Screenshots + +Column chart: +![Column chart](./docs/img/1.png) + +Time chart: +![Time chart](./docs/img/2.png) + +Pie chart: +![Pie chart](./docs/img/3.png) + +Settings: +![Settings](./docs/img/4.png) + +Expanded time chart +![Expanded time chart](./docs/img/5.png) ## Installation diff --git a/docs/img/1.png b/docs/img/1.png new file mode 100644 index 0000000..8c2b26d Binary files /dev/null and b/docs/img/1.png differ diff --git a/docs/img/2.png b/docs/img/2.png new file mode 100644 index 0000000..2db79d8 Binary files /dev/null and b/docs/img/2.png differ diff --git a/docs/img/3.png b/docs/img/3.png new file mode 100644 index 0000000..c15fe56 Binary files /dev/null and b/docs/img/3.png differ diff --git a/docs/img/4.png b/docs/img/4.png new file mode 100644 index 0000000..230315b Binary files /dev/null and b/docs/img/4.png differ diff --git a/docs/img/5.png b/docs/img/5.png new file mode 100644 index 0000000..380c144 Binary files /dev/null and b/docs/img/5.png differ diff --git a/manifest.json b/manifest.json index 73524a7..c1e48d5 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "Calendar Plus", "short_name": "GCal Stats", "version": "1.0.0", - "description": "A Chrome extension for Google Calendar that allows to easily see what you spend your time, get insights on and set goals", + "description": "Google Calendar extension that provides insights into where your time goes. Includes power user tools, data export and customization", "author": "EECS 581 Team 19", "manifest_version": 3, "icons": { diff --git a/src/package.json b/src/package.json index 8bc29be..ef6aaa3 100644 --- a/src/package.json +++ b/src/package.json @@ -2,7 +2,7 @@ "name": "calendar-stats", "version": "1.0.0", "private": true, - "description": "A Chrome extension for Google Calendar that allows to easily see what you spend your time, get insights on and set goals", + "description": "A browser extension for Google Calendar that provides insights into where your time goes. Includes power user tools, data export and customization", "license": "MIT", "repository": { "type": "git",