Replace curly apostrophe with straight one in Last.fm user profile titles
// ==UserScript==
// @name Fix Last.fm Apostrophe in User Profile Titles
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Replace curly apostrophe with straight one in Last.fm user profile titles
// @author HuxP
// @match https://www.last.fm/user/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Check and replace curly apostrophe in document title
const originalTitle = document.title;
const fixedTitle = originalTitle.replace(/’/g, "'");
if (originalTitle !== fixedTitle) {
document.title = fixedTitle;
}
})();