Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
document.addEventListener('DOMContentLoaded', function() {
console.log("Script running...");
var links = document.querySelectorAll('a[href*="https://ntldstats.com/tld/"]');
console.log("Links found: ", links.length);
links.forEach(function(link) {
console.log("Original href: ", link.href);
var url = new URL(link.href);
var paths = url.pathname.split('/');
var lastSegment = paths[paths.length - 1];
if (lastSegment.startsWith('.')) {
lastSegment = lastSegment.substring(1); // Remove the leading dot
paths[paths.length - 1] = lastSegment;
url.pathname = paths.join('/');
link.href = url.toString();
console.log("Modified href: ", link.href);
}
});
});
$(document).ready(function() {
$('#free_text').wikiEditor('create');
});