Created
August 7, 2025 09:15
-
-
Save sorah/bbf6d8ce5e4f7da69b75a54ff170ebc7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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