userscripts
userscripts copied to clipboard
GitHub Latest not working anymore with the new Issues (public preview)
https://github.blog/changelog/2025-01-13-evolving-github-issues-public-preview/
Example: https://github.com/expo/dev-plugins/issues?sort=updated
If you want to stick to the original script but with a fix to the sorting, apply this change:
diff --git a/GitHub_Latest.user.js b/GitHub_Latest.user.js
--- a/GitHub_Latest.user.js
+++ b/GitHub_Latest.user.js
@@ -36,7 +36,7 @@
var button = list_item_issues_copy.firstElementChild;
button.id = "latest-button"
- button.href += "?sort=updated";
+ button.href += "?q=sort%3Aupdated-desc";
button.style.float = "right";
Alternatively, you can use my version which handled this issue with no problems.