blob: 42a0e3a4f88159fca705acb89cf6f260f23e7996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// ==UserScript==
// @name devRant Greentext
// @namespace https://devrant.com
// @include https://devrant.com/*
// @version 1
// @description Makes lines prefixed with > green. Just like greentext does.
// @run-at document-end
// @grant none
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js
// ==/UserScript==
(function() {
$('.rantlist-content,.rantlist-title-text,.username-row+.rantlist-title').each(function() {
$(this).html(
$(this)
.html()
.split("<br>")
.map((text) => text.trim())
.map((text) => {
if (text.startsWith(">")) {
return `<span style="color: #78FB78;">${text}</span>`;
}
return text;
})
.join("<br>"));
});
})();
|