An extension for Google Slides that shows time remaining.
The extension can be installed from the Google Chrome Store.
You can install the extension by hand, if you prefer, as follows:
- Clone this repository to your local machine
- Open chrome://extensions
- Switch to Developer Mode
- Install the extension using the "Load unpacked" button, point to the "hurry/hurry" folder.
- Reload Google Slides
Edit the Speaker Notes for slide 1 of your presentation. Add something like the following:
# time=45
# normal=pink
# hurry=purple
This is equivalent to the one-liner:
# normal=pink time=45 hurry=purple
The above commands tell Hurry that:
- Your presentation will last 45 minutes.
- You asked for a pink progress bar.
- Once time is almost up, the progress bar will turn purple.
Use a horizontal full-width minimal progressbar at the top.
See github.com/laffra/hurry for more details.
# time=45 width=100% height=3 left=0 top=0 normal=grey border=transparent
Use a vertical full-height progressbar at the right.
See github.com/laffra/hurry for more details.
# time=45 height=100% width=5 right=0 top=0
# time=60 - we have an hour. See: github.com/laffra/hurry
The color attributes you can set:
normal
(string, defaultgreen
) : the color of the progress bar (up to 50%)warning
(string, defaultorange
) : the color when you are halfway (>50%)hurry
(string, defaultred
) : the color when you really have to hurry (>75%)label
(string, defaultgrey
) : the color of the label saying how many minutes are leftborder
(string, defaultgrey
) : the color of the progress bar border (can betransparent
)
The location attributes you can set:
top
(number, default20
) : how many pixels from the top the bar is shownbottom
(number) : how many pixels from the bottom the bar is shownleft
(number) : how many pixels from the left the bar is shownright
(number, default20
) : how many pixels from the right the bar is shown
Note that left
/right
and top
/bottom
conflict, only one can win.
The size attributes you can set:
width
(number, default200
) : width of the progress bar (can be100%
)height
(number, default5
) : height of the progress bar (can be100%
)