From f62aae3da532a215a84829dd6f7c3ea65cec7e4f Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 1 Sep 2021 06:50:18 -0400 Subject: [PATCH] initial commit Create framework for Chrome extension and global button styles --- manifest.json | 15 +++++++++++++++ script.js | 0 sh.ico | Bin 0 -> 1150 bytes style.css | 25 +++++++++++++++++++++++++ 4 files changed, 40 insertions(+) create mode 100644 manifest.json create mode 100644 script.js create mode 100644 sh.ico create mode 100644 style.css diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..d0e5cee --- /dev/null +++ b/manifest.json @@ -0,0 +1,15 @@ +{ + "manifest_version": 3, + + "name": "ServiceHub Plus", + "version": "0.1.0", + "description": "Improvements for TRG Service Hub techs", + + "content_scripts": [ + { + "css": ["style.css"], + "js": ["script.js"], + "matches": ["https://portal.trgrepair.com/*"] + } + ] +} diff --git a/script.js b/script.js new file mode 100644 index 0000000..e69de29 diff --git a/sh.ico b/sh.ico new file mode 100644 index 0000000000000000000000000000000000000000..10a51f6cdbf424634a0e494a86fbe2e347b16a30 GIT binary patch literal 1150 zcmZQzU<5(|0R|vYV8~!$U=RbcG=LZ+qyWT>V3L8s0VszKK7IQ1|KrDxWMPorg$oz{ z&(F`tiD%51j@Rt@^XLEf_xJlB8yoXKH8ll}6B6RV;@#a{c=fMdy&9};%9P3f_wL;b z$5*agCQAR#ojbwmKz3JGSHUr{`nPS{2G+lP`SSm#PoMg~Y11Y!o;7PGQTDG~xe~5_ z_wL>Q=ggS{$9|Dv|AU$<|Ht;VVBp-zJ>YNwsRxB$c6QePwzf7D9A94epKJTn|BCzO z{}C>D4(;i&>pLS{Q|DL<&{$Kd`8Y~{Ycq&o)?|l96|G?WP|Cc+=^!uOQ{9k?lLa?2numtfX_ssc!_|iGN`VU+< c`#*i>O02l`;8whPiOrLg=3fSe|Nkk$0EFdOasU7T literal 0 HcmV?d00001 diff --git a/style.css b/style.css new file mode 100644 index 0000000..9c9df42 --- /dev/null +++ b/style.css @@ -0,0 +1,25 @@ +/* + Dark Gray: #544343 + Light Gray: #999799 + Blue: #086788 + Green: #9FCC2E +*/ + +input[type="button"] { + background-color: #696969; + color: white; + border-radius: 3px; + padding: 1.5px 5px; + text-decoration: none; + cursor: pointer; + border: none; + transition: background-color 200ms ease-in-out; +} + +input[type="button"]:hover { + background-color: #535353; +} + +input[type="button"]:disabled { + opacity: 0.3; +}