Skip to content

Commit 5aef922

Browse files
committed
Various fixes
1 parent 11b4904 commit 5aef922

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.3
1+
0.1.4
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1
1+
0.1.1

greasemonkey/sa-mobile-friendly/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ <h2><a href="#description">Usage and description</a></h2>
1212
<h3>Versions</h3>
1313

1414
<ul>
15+
<li>
16+
0.1.4 - 2025-10-24
17+
<ul>
18+
<li>Various styling tweaks</li>
19+
</ul>
20+
</li>
1521
<li>
1622
0.1.3 - 2025-10-23
1723
<ul>

greasemonkey/sa-remove-subforum-stylesheets/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ <h2><a href="#description">Usage and description</a></h2>
1212
<h3>Versions</h3>
1313

1414
<ul>
15+
<li>
16+
0.1.1 - 2025-10-25
17+
<ul>
18+
<li>Don't get the mod stylesheet</li>
19+
</ul>
20+
</li>
1521
<li>
1622
0.1 - 2025-10-23
1723
<ul>

greasemonkey/sa-remove-subforum-stylesheets/sa-remove-subforum-stylesheets.user.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
if (el.href.match(subforumRegex)) el.remove();
1313
});
1414

15-
document.querySelectorAll('link[href^="https://i.somethingawful.com/css/platicons.css"] ~ link[type="text/css"]').forEach(el => el.remove());
15+
document.querySelectorAll(`link[href^="https://i.somethingawful.com/css/platicons.css"] + link[type="text/css"],
16+
link[href^="https://i.somethingawful.com/css/platicons.css"] + style,
17+
link[href^="https://i.somethingawful.com/css/platicons.css"] + style + link[type="text/css"]`).forEach(el => el.remove());
1618
}
1719

1820
function tryRemoveStylesheets() {
@@ -24,4 +26,4 @@
2426
}
2527

2628
tryRemoveStylesheets();
27-
})();
29+
})();

0 commit comments

Comments
 (0)