-
-
Save apsolut/37c1dd70762d217a8bda2871aa08e10b 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