Skip to content

Instantly share code, notes, and snippets.

@sorah
Created August 7, 2025 09:15
Show Gist options
  • Save sorah/bbf6d8ce5e4f7da69b75a54ff170ebc7 to your computer and use it in GitHub Desktop.
Save sorah/bbf6d8ce5e4f7da69b75a54ff170ebc7 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name correct aws what's new article page <title>
// @description correct
// @namespace http://tampermonkey.net/
// @version 2025-08-07
// @author sorah.jp
// @match https://aws.amazon.com/about-aws/whats-new/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=amazon.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(!/^What's New at AWS /.test(document.title)) return;
const correctTitle = document.querySelector(".wn-title");
if(!correctTitle) return;
document.title = correctTitle.innerText;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment