Ben Markson Posted November 1, 2021 Posted November 1, 2021 The new home for all the browser threads. https://msfn.org/board/forum/201-browsers-working-on-older-nt-family-oses/ Can this link be pinned in this forum? Ben.
Tripredacus Posted November 1, 2021 Posted November 1, 2021 No need https://msfn.org/board/topic/183119-new-web-browsers-sub-forum/ PS: Your last unread post location may have been lost after the threads have been moved. This means when you click to read last unread you will go back to Page 1. This should only be temporary.
Ben Markson Posted November 14, 2021 Author Posted November 14, 2021 It helps me to have a direct link so this is my solution. It adds a Subforums link to the Windows XP page that points to the Browsers working on Older NT-Family OSes page. // ==UserScript== // @name addBrowserLink // @namespace BenMarkason // @author Ben Markson // @description Add Browser Link. // @include https://msfn.org/board/forum/34-windows-xp/ // @grant none // @version 1.0 // @run-at document-end // ==/UserScript== (function() { eli = document.getElementsByClassName("ipsDataList_zebra"); if (eli[0]) { li = document.createElement("li"); li.className = "cForumRow ipsDataItem ipsDataItem_responsivePhoto ipsClearfix"; eli[0].appendChild(li); div = document.createElement("div"); div.className = "ipsDataItem_icon ipsDataItem_category"; li.appendChild(div); span = document.createElement("span"); span.className = "ipsItemStatus ipsItemStatus_large cForumIcon_normal ipsItemStatus_read"; div.appendChild(span); i = document.createElement("i"); i.className = "fa fa-comments"; span.appendChild(i); div = document.createElement("div"); div.className = "ipsDataItem_main"; li.appendChild(div); h4 = document.createElement("h4"); h4.className = "ipsDataItem_title ipsType_break"; div.appendChild(h4); a = document.createElement("a"); a.href = "https://msfn.org/board/forum/201-browsers-working-on-older-nt-family-oses/"; a.textContent = "Browsers working on Older NT-Family OSes"; a.className = "ipsDataItem_title ipsType_break"; h4.appendChild(a); } })(); Ben.
NotHereToPlayGames Posted November 16, 2021 Posted November 16, 2021 How about a screencap? I'm not keen on installing the script until I can physically SEE what I will gain BEFORE installing it.
jaclaz Posted November 16, 2021 Posted November 16, 2021 1 hour ago, NotHereToPlayGames said: How about a screencap? I'm not keen on installing the script until I can physically SEE what I will gain BEFORE installing it. You could ask to have your member name changed to NotHereToInstallScriptsWithoutScreenCapsNoSeeNoGo ... Though probably such a long name would wreck for good the forum page layout. HereJustToGainsay would be short and effective, though . jaclaz
Ben Markson Posted November 16, 2021 Author Posted November 16, 2021 2 hours ago, NotHereToPlayGames said: How about a screencap? I'm not keen on installing the script until I can physically SEE what I will gain BEFORE installing it. Here you go: ...but I'd believe the code over a screenshot. This is the 'active' content': a.href = "https://msfn.org/board/forum/201-browsers-working-on-older-nt-family-oses/"; a.textContent = "Browsers working on Older NT-Family OSes"; Ben, 1
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now