diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2024-08-10 19:52:03 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-08-10 19:52:03 -0500 |
commit | 8e793e9d239ae9008382e0af07a163eae804ee32 (patch) | |
tree | a8b4e47d6667793a5c8a158339f6512c95460cf0 | |
parent | 5cd7617d4467693feced81b440eee8782aebdb02 (diff) | |
download | userscripts-8e793e9d239ae9008382e0af07a163eae804ee32.tar.xz userscripts-8e793e9d239ae9008382e0af07a163eae804ee32.zip |
move usps and rateyourmusic dark reader script
-rw-r--r-- | misc/rateyourmusic.com-dark-reader-compatibility.js | 20 | ||||
-rw-r--r-- | misc/usps-fill-out-scheduled-pickup.js (renamed from usps/fill-out-usps-scheduled-pickup.js) | 2 |
2 files changed, 21 insertions, 1 deletions
diff --git a/misc/rateyourmusic.com-dark-reader-compatibility.js b/misc/rateyourmusic.com-dark-reader-compatibility.js new file mode 100644 index 0000000..587fd7d --- /dev/null +++ b/misc/rateyourmusic.com-dark-reader-compatibility.js @@ -0,0 +1,20 @@ +// ==UserScript== +// @name rateyourmusic.com darkmode compat +// @namespace Violentmonkey Scripts +// @match https://rateyourmusic.com/* +// @grant GM_addStyle +// @version 1.0 +// @author - +// @description 7/9/2024, 10:34:17 PM +// ==/UserScript== + +GM_addStyle(` + .page_charts_section_charts_item_details_average_num { background: var(--average-rating); -webkit-background-clip: text; } + .page_home_intro_content_text_sitename, + .disco_avg_rating { background-clip: text !important; } + #column_container_right *, + .disco_expand_section_btn { background: #111 !important; } + #ui_search_input_main_search { background: #252525; } + .page_home_section_featured_content_content_item .page_section_dynamic_fade_cover { background: linear-gradient(to bottom,rgba(128,128,128,0),#212121); } + .ui_button { background: 444 !important; } +`) diff --git a/usps/fill-out-usps-scheduled-pickup.js b/misc/usps-fill-out-scheduled-pickup.js index 88660fc..a8359ce 100644 --- a/usps/fill-out-usps-scheduled-pickup.js +++ b/misc/usps-fill-out-scheduled-pickup.js @@ -4,7 +4,7 @@ // @match https://tools.usps.com/schedule-pickup-steps.htm* // @grant none // @version 1.0 -// @author - +// @author tjkeller.xyz // @description 2/11/2024, 7:23:34 PM // ==/UserScript== |