JeromeTash
Legendary
Offline
Activity: 2548
Merit: 1314
Heisenberg
|
 |
May 14, 2025, 02:54:44 PM Last edit: May 14, 2025, 03:37:52 PM by JeromeTash |
|
Hey mate! I am getting an error (504 Gateway Time-out) with the second link. Too old I guess.
Yep, I noticed it too, and it appears the creator of the script just deleted it. I don't know his/her profile in this forum, it could have been easier to ping him about it. Or maybe @Xal0lex knows him/her? Edit: Here is a script that got downloaded. I have no idea how it happened despite that error. When I checked my download folder, the script was right there waiting for me to notice it. // ==UserScript== // @name Dark Themes - Bitcointalk Forums // @namespace http://userstyles.org // @description Makes bitcointalk.org dark. // @author CatmanIX // @homepage https://userstyles.org/styles/89138 // @include http://bitcointalk.org/* // @include https://bitcointalk.org/* // @include http://*.bitcointalk.org/* // @include https://*.bitcointalk.org/* // @run-at document-start // @version 0.20130616013013 // ==/UserScript== (function() {var css = [ "body, a.nav:hover, .nav, .nav:link, .nav:visited, .windowbg, .windowbg2, .windowbg3, #preview_body, .quote {", " background-color: #222 !important;", " color: #EEE !important;", "}", "", "a:link, a:visited {", " color: #0BF !important;", "}", "", "td, th, tr, .titlebg, .titlebg a:link, .titlebg a:visited, .titlebg2 a:link, .titlebg2 a:visited, .maintab_back a:link, .maintab_back a:visited, .maintab_active_back a:link, .maintab_active_back a:visited, div#bodyarea .maintab_active_back a:link, div#bodyarea .maintab_active_back a:visited, div#bodyarea .mirrortab_active_back a:link, div#bodyarea .mirrortab_active_back a:visited, .catbg3, tr.catbg3 td, .catbg3 a:link, .catbg3 a:visited {", " color: #EEE !important;", "}", "", ".titlebg a:hover, div#bodyarea .maintab_back a:link, div#bodyarea .maintab_back a:visited, div#bodyarea .mirrortab_back a:link, div#bodyarea .mirrortab_back a:visited, .catbg a:hover, .catbg2 a:hover, .catbg3 a:hover {", " color: #CCC !important;", "}", "", ".catbg, tr.catbg td, .catbg2, tr.catbg2 td, .catbg3, tr.catbg3 td, .titlebg, tr.titlebg th, tr.titlebg td, .titlebg2, tr.titlebg2 th, tr.titlebg2 td, div#bodyarea .maintab_active_back, div#bodyarea .mirrortab_active_back {", " color: #EEE !important;", " background: url(http://goo.gl/HPR9z) #131313 repeat-x !important;/*", " border-bottom: solid 1px #123 !important;", " border-top: solid 1px #111 !important;*/", "}", "/*", ".maintab_first {", " background: url(http://goo.gl/DvyNg) left bottom no-repeat;", "}", "", ".maintab_active_first {", " background: url(http://goo.gl/XxoPy) left bottom no-repeat;", "}", " ", ".maintab_active_back {", " background: url(http://goo.gl/3qJhZ) left bottom repeat-x;", "}", "", ".maintab_active_last {", " background: url(http://goo.gl/S18WE) left bottom no-repeat;", "}", "", ".maintab_back {", " background: url(http://goo.gl/XfV5f) left bottom repeat-x;", "}", "", ".maintab_last {", " background: url(http://goo.gl/cnzUW) left bottom no-repeat;", "}*/" ].join("\n"); if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } else { // no head yet, stick it whereever document.documentElement.appendChild(node); } } })();
|