Compare commits
9 Commits
83ac9e687c
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 70c0facad3 | |||
| ab518bd281 | |||
| fe80210c8d | |||
| 2d04dca0ac | |||
| 1eaacb7ce1 | |||
| 945c0f8d94 | |||
| 5482c6aae9 | |||
| e3adeb55b1 | |||
| 98054b28f1 |
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 251 B |
Binary file not shown.
|
After Width: | Height: | Size: 211 B |
+33
-15
@@ -1,15 +1,33 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
|
||||
"name": "ServiceHub Plus",
|
||||
"version": "0.1.2",
|
||||
"description": "Improvements to Service Hub for TRG techs",
|
||||
|
||||
"content_scripts": [
|
||||
{
|
||||
"css": ["style.css"],
|
||||
"js": ["script.js"],
|
||||
"matches": ["https://portal.trgrepair.com/*"]
|
||||
}
|
||||
]
|
||||
}
|
||||
{
|
||||
"manifest_version": 3,
|
||||
|
||||
"name": "ServiceHub+",
|
||||
"author": "Charles Danesi",
|
||||
"homepage_url": "https://charlesdanesi.net",
|
||||
"version": "0.1.4",
|
||||
"description": "Improvements to Service Hub for TRG techs",
|
||||
|
||||
"content_scripts": [
|
||||
{
|
||||
"css": ["style.css"],
|
||||
"js": ["script.js"],
|
||||
"matches": ["https://portal.trgrepair.com/*"]
|
||||
}
|
||||
],
|
||||
|
||||
"web_accessible_resources": [
|
||||
{
|
||||
"resources": [
|
||||
"fonts/MaterialIcons-Regular.ttf",
|
||||
"fonts/MaterialIconsOutlined-Regular.otf",
|
||||
"img/autorenew.png",
|
||||
"overrides.js"
|
||||
],
|
||||
"matches": ["<all_urls>"],
|
||||
"extensions": ["lmeeejhdmpakenhgdfmgjcbdmeppjpam"],
|
||||
"run_at": "document_end"
|
||||
}
|
||||
],
|
||||
|
||||
"permissions": ["storage", "activeTab", "scripting", "nativeMessaging"]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
// Fix that annoying BS where the ID takes focus CONSTANTLY
|
||||
|
||||
console.log("Injection succeeded!");
|
||||
|
||||
function checkLoc() {
|
||||
var sLoc = document.getElementById("txtTRG_Loc").value;
|
||||
var sUsr = document.getElementById("txtTRG_User").value;
|
||||
if (sLoc.length == 0) {
|
||||
alert("You need to enter a location.");
|
||||
sLoc.focus();
|
||||
} else {
|
||||
if (sUsr.length == 0) {
|
||||
//alert("We suck at writing proper code.");
|
||||
console.log("Override successful");
|
||||
document.getElementById("txtTRG_User").value = "20539";
|
||||
// document.querySelectorAll["txtTRG_User"].focus();
|
||||
}
|
||||
}
|
||||
resetTimeout();
|
||||
}
|
||||
|
||||
var bfTest = document.getElementById("txtTRG_Bin");
|
||||
bfTest.onfocus();
|
||||
@@ -0,0 +1,66 @@
|
||||
"use strict";
|
||||
|
||||
/*
|
||||
TODO style individual buttons
|
||||
TODO options page (set UID)
|
||||
TODO move parts list buttons top or bottom (form name='frmPartsSelection'), btnSave, btnCancel
|
||||
NOTE color themes?
|
||||
BUG close button on photo pages is styled along with the btnCancel
|
||||
NOTE display tiny images next to parts list?
|
||||
TODO shrink navbar/header/location on scroll
|
||||
TODO fancy button animations
|
||||
TODO choose file on upload window
|
||||
TODO insert a reset button into search form
|
||||
TODO style menubar and keep it sticky on the window
|
||||
TODO style/move the location scan to float with the RO
|
||||
TODO color bg to bin color
|
||||
*/
|
||||
|
||||
// temporarily override stupid alerts that happen randomly all day long
|
||||
//document.getElementById("txtTRG_User").value = "20539";
|
||||
|
||||
// Warranty Highlight
|
||||
const isWarranty = document.getElementById("chkWarrantee");
|
||||
if (isWarranty != null) {
|
||||
isWarranty.addEventListener("change", updateBackground);
|
||||
updateBackground();
|
||||
function updateBackground() {
|
||||
isWarranty.nextElementSibling.style.backgroundColor = isWarranty.checked
|
||||
? "red"
|
||||
: "transparent";
|
||||
isWarranty.nextElementSibling.style.color = isWarranty.checked
|
||||
? "white"
|
||||
: "black";
|
||||
}
|
||||
}
|
||||
|
||||
// TODO highlight change case label if SN updated
|
||||
const newSN = document.getElementById("txtNewBoardSN"); // this is the new SN field
|
||||
const snWasUpdated = document.getElementById("chkCaseSNUpdate"); // this is the checkbox
|
||||
|
||||
// if (newSN.length != null) {
|
||||
// newSN.addEventListener("change", updateSNBackground, false);
|
||||
// updateSNBackground();
|
||||
// }
|
||||
// function updateSNBackground() {
|
||||
// alert("test");
|
||||
// }
|
||||
|
||||
// TODO add current location to a floating modal (or something)
|
||||
|
||||
// Notification system
|
||||
// TODO implement facebook-style notifications
|
||||
// https://portal.trgrepair.com/task_manager.asp?rnd=0.9996227368620352
|
||||
|
||||
// const notifCountStr = document.getElementById("lblTask").innerText;
|
||||
// const notifCount = parseInt(notifCountStr.split(" ")[2]); // Total task count
|
||||
// const notifCountNew = parseInt(notifCountStr.split(" ")[5].slice(1)); // New task count
|
||||
|
||||
// Code injection
|
||||
var s = document.createElement("script");
|
||||
s.src = chrome.runtime.getURL("overrides.js");
|
||||
(document.head || document.documentElement).appendChild(s);
|
||||
|
||||
s.onload = function () {
|
||||
this.remove();
|
||||
};
|
||||
|
||||
@@ -1,125 +1,143 @@
|
||||
/*
|
||||
|
||||
TODO float buttons on bottom of RO
|
||||
TODO float location entry on RO (sidebar?)
|
||||
TODO style individual buttons
|
||||
TODO options page
|
||||
- move parts list buttons top or bottom
|
||||
- color themes?
|
||||
BUG close button on photo pages is styled along with the btnCancel
|
||||
HACK display tiny images next to parts list?
|
||||
TODO shrink navbar/header/location on scroll
|
||||
TODO fancy button animations
|
||||
*/
|
||||
|
||||
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
||||
|
||||
:root {
|
||||
--white: #f4f4f9;
|
||||
--darkgray: #696969;
|
||||
--lightgray: #857f74;
|
||||
--darkblue: #0f2137;
|
||||
--lightblue: #0ebbfe;
|
||||
--green: #c1d830;
|
||||
--darkgreen: #103900;
|
||||
--black: #000;
|
||||
}
|
||||
|
||||
/* General Styles */
|
||||
|
||||
/* Buttons */
|
||||
|
||||
input[type="button"] {
|
||||
font-family: Roboto, sans-serif;
|
||||
background-color: var(--darkgray);
|
||||
color: var(--white);
|
||||
border-radius: 5px;
|
||||
padding: 0.55em 1.25em;
|
||||
text-decoration: none;
|
||||
font-size: 0.9em;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: color 250ms ease-in, background-color 250ms ease-in;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: var(--lightgray);
|
||||
}
|
||||
|
||||
input[type="button"]:disabled {
|
||||
opacity: 0.3;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[name="btnCancel"] + input[name="btnSave"] {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
input[name="btnCancel"] {
|
||||
background-color: lightcoral;
|
||||
color: var(--white);
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 90px;
|
||||
}
|
||||
|
||||
input[id="btnSubmitForApproval"]:hover {
|
||||
background-color: var(--darkblue);
|
||||
color: var(--lightblue);
|
||||
}
|
||||
|
||||
input[value="Mark Complete"]:hover {
|
||||
background-color: var(--green);
|
||||
color: var(--darkgray);
|
||||
/*font-weight: bolder;*/
|
||||
}
|
||||
|
||||
input[name="btnParts"] {
|
||||
margin: 0;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
input[name="btnIssue4Eval"] {
|
||||
background-color: var(--darkgreen);
|
||||
color: var(--lightgray);
|
||||
}
|
||||
|
||||
input[name="btnContract"] {
|
||||
padding: .3em 0;
|
||||
background-color: var(--green);
|
||||
color: var(--darkgray);
|
||||
}
|
||||
|
||||
input[name="btnExpandRepairHistory"] {
|
||||
padding: 0.25em 0;
|
||||
}
|
||||
|
||||
input[name="btnRepairCodes"] {
|
||||
padding: 0.5em 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
input[value="Exit"] {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
input[value="View Repair"] {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
input[value="View Repair"],
|
||||
input[value="Remove Repair"] {
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
/* Images */
|
||||
|
||||
img[id="Img1"],
|
||||
img[id="Img2"] {
|
||||
position: absolute;
|
||||
content: url("https://upload.wikimedia.org/wikipedia/commons/thumb/9/9e/Plus_symbol.svg/500px-Plus_symbol.svg.png");
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
||||
|
||||
@font-face {
|
||||
font-family: "Material Icons Outlined";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("chrome-extension://__MSG_@@extension_id__/fonts/MaterialIconsOutlined-Regular.otf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Material Icons";
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url("chrome-extension://__MSG_@@extension_id__/fonts/MaterialIcons-Regular.ttf");
|
||||
}
|
||||
|
||||
:root {
|
||||
--white: #f4f4f9;
|
||||
--darkgray: #696969;
|
||||
--lightgray: #857f74;
|
||||
--darkblue: #0f2137;
|
||||
--lightblue: #0ebbfe;
|
||||
--green: #c1d830;
|
||||
--darkgreen: #103900;
|
||||
--black: #000;
|
||||
}
|
||||
|
||||
/* General Styles */
|
||||
|
||||
/* Buttons */
|
||||
|
||||
input[type="button"] {
|
||||
font-family: Roboto, sans-serif;
|
||||
background-color: var(--darkgray);
|
||||
color: var(--white);
|
||||
border-radius: 5px;
|
||||
padding: 0.55em 1.25em;
|
||||
text-decoration: none;
|
||||
font-size: 0.9em;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
transition: color 250ms ease-in, background-color 250ms ease-in;
|
||||
}
|
||||
|
||||
input[type="button"]:hover {
|
||||
background-color: var(--lightgray);
|
||||
}
|
||||
|
||||
input[type="button"]:disabled {
|
||||
opacity: 0.3;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[name="btnCancel"] + input[name="btnSave"] {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
input[name="btnCancel"] {
|
||||
background-color: var(--lightblue);
|
||||
color: var(--white);
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 90px;
|
||||
}
|
||||
|
||||
input[id="btnSubmitForApproval"]:hover {
|
||||
background-color: var(--darkblue);
|
||||
color: var(--lightblue);
|
||||
}
|
||||
|
||||
input[value="Mark Complete"]:hover {
|
||||
background-color: var(--green);
|
||||
color: var(--darkgray);
|
||||
}
|
||||
|
||||
input[name="btnParts"] {
|
||||
margin: 0;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
input[name="btnIssue4Eval"] {
|
||||
background-color: var(--darkgreen);
|
||||
color: var(--green);
|
||||
}
|
||||
|
||||
input[name="btnContract"] {
|
||||
padding: 0.3em 0;
|
||||
background-color: var(--darkgray);
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
input[name="btnExpandRepairHistory"] {
|
||||
padding: 0.25em 0;
|
||||
}
|
||||
|
||||
input[name="btnRepairCodes"] {
|
||||
padding: 0.5em 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
input[value="Exit"] {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
input[value="View Repair"] {
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
input[value="View Repair"],
|
||||
input[value="Remove Repair"] {
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
label {
|
||||
transition: background-color 250ms ease-in, color 250ms ease-in;
|
||||
}
|
||||
|
||||
label[for="chkWarrantee"] {
|
||||
padding: 0.35em;
|
||||
}
|
||||
|
||||
/* Images */
|
||||
|
||||
img[id="Img1"],
|
||||
img[id="Img2"] {
|
||||
position: absolute;
|
||||
content: url("chrome-extension://__MSG_@@extension_id__/img/autorenew.png");
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
/* BUG: The below lines aren't working.. */
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
img[id="Img3"] {
|
||||
content: url("chrome-extension://__MSG_@@extension_id__/img/autorenew.png");
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user