This plugin allows you to keep track of how much time you spend using Blockbench and how long you spend working on each project.
- Head to the Tools menu and select Activity Tracker
- From here you can see all your stats for both Blockbench and the current project.
- You can use the options in the dialog to configure if tracking should pause when tabbed out.
<style>
.about {
height: 100%;
display: flex;
flex-direction: column;
}
#about-content {
overflow-y: auto;
min-height: 128px;
display: flex;
flex-direction: column;
height: 100%;
}
#about-markdown-links {
display: flex;
justify-content: space-around;
margin: 20px 20px 0;
}
#about-markdown-links > a {
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
padding: 5px;
text-decoration: none;
flex-grow: 1;
flex-basis: 0;
color: var(--color-subtle_text);
text-align: center;
}
#about-markdown-links > a:hover {
background-color: var(--color-accent);
color: var(--color-light);
}
#about-markdown-links > a > i {
font-size: 32px;
width: 100%;
max-width: initial;
height: 32px;
text-align: center;
}
#about-markdown-links > a:hover > i {
color: var(--color-light) !important;
}
#about-markdown-links > a > p {
flex: 1;
display: flex;
align-items: center;
margin: 0;
}
</style>