Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit b883568

Browse files
committed
Alpha Release
Alpha Release
1 parent 7c5e696 commit b883568

6 files changed

Lines changed: 65 additions & 15 deletions

File tree

RaterLog.html renamed to frontend.html

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,21 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<style>
6-
body { font-family: sans-serif; padding: 15px; width: 300px; }
7-
input, textarea { width: 100%; margin: 8px 0; padding: 8px; }
8-
button { padding: 10px; width: 100%; margin-top: 10px; }
9-
#output { white-space: pre-wrap; margin-top: 20px; font-size: 12px; }
10-
.hidden {
11-
display: none;
12-
}
13-
</style>
5+
<link rel="stylesheet" href="styles.css">
6+
147
</head>
158
<body>
169
<!-- Main View-->
1710
<div id="mainView">
1811
<h1> RaterLog Dashboard </h1>
1912
<p> Please type in the following fields to log in your data: </p>
13+
<label for="StartTime">Start Time: </label>
2014
<input type="time" id="StartTime">
15+
<label for="EndTime"> End Time: </label>
2116
<input type="time" id="EndTime">
17+
<label for="date"> Enter the Date: </label>
2218
<input type="date" id="Date">
19+
<label for="TasksCompleted"> Total Tasks Completed: </label>
2320
<textarea id="TasksCompleted" placeholder="What did you do?"></textarea>
2421
<button id="save-btn">Save Task</button>
2522
<button id="view-logs">View Hours Worked</button>
@@ -43,9 +40,9 @@ <h2> All Logs </h2>
4340

4441
<!-- Footer-->
4542
<footer>
46-
<a href="https://github.com/AustinCGomez/RatingLog"> RatingLog is a open-source project. Visit our github to contribute! </a>
43+
<p> Developed free for everyone under the MIT License! </p>
4744
</footer>
4845

49-
<script src="popup.js"></script>
46+
<script src="main.js"></script>
5047
</body>
5148
</html>
File renamed without changes.
File renamed without changes.

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"manifest_version": 3,
66
"permissions": ["storage"],
77
"action": {
8-
"default_popup": "RaterLog.html",
9-
"default_icon": "RaterLog.png"
8+
"default_popup": "frontend.html",
9+
"default_icon": "logo.png"
1010
}
1111
}

readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# RatingLog
21

3-
RatingLog is a plugin for Google Chrome that helps raters (I.E. TELUS, WeLocalize, Reform, and other platforms) to keep track of their hours worked which are often irregular compared a normal hourly shift. Through RatingLog, you can easily log in your hours and then collect them for later when you submit your timesheets.
2+
# About us
3+
4+
RatingLog is a upcoming plugin for Google Chrome that helps raters (I.E. TELUS, WeLocalize, Reform, and other platforms) to keep track of their hours worked which are often irregular compared a normal hourly shift. Through RatingLog, you can easily log in your hours and then collect them for later when you submit your timesheets.
45

56
# Installation
67
This plugin is currently only avaialble through an unpackaged extension. We are finalizing our UI design and bug testing before we release it for free onto the Google Chrome Extension store. For the time being please follow the stpes below to install the extension:

styles.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
2+
3+
body {
4+
font-family: sans-serif;
5+
padding: 15px;
6+
width: 300px;
7+
background-color: #0F172A;
8+
9+
10+
11+
}
12+
13+
input, textarea {
14+
15+
width: 100%;
16+
margin: 8px 0;
17+
padding: 8px;
18+
}
19+
20+
button {
21+
padding: 10px;
22+
width: 100%;
23+
margin-top: 10px;
24+
color: white;
25+
background-color:#3B82F6;
26+
}
27+
28+
#output {
29+
white-space: pre-wrap;
30+
margin-top: 20px;
31+
font-size: 12px;
32+
}
33+
34+
.hidden {
35+
display: none;
36+
}
37+
38+
#mainView {
39+
color:#F1F5F9;
40+
41+
}
42+
43+
#logs-dashboard {
44+
color: #F1F5F9;
45+
}
46+
#warning-dashboard {
47+
color: #F1F5F9;
48+
}
49+
50+
footer {
51+
background-color: white;
52+
}

0 commit comments

Comments
 (0)