User:CX Zoom/scripts/RevisionID.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Full credit to User:Chlod at Special:Diff/1131093985

var revid = document.createElement("span");
revid.classList.add("first-heading-revid");
revid.innerText = mw.config.get("wgRevisionId");
mw.util.addCSS(".first-heading-revid::before { content: '(' } .first-heading-revid::after { content: ')' } .first-heading-revid { color: gray; margin-left: 0.6em; font-size: 0.6em; }");
document.querySelector("#firstHeading").append(revid);