Automatically redirect github.com to github.com/feed when visiting GitHub’s homepage
// ==UserScript==
// @name Redirect github.com to github.com/feed
// @namespace https://github.com/
// @version 1.0
// @description Automatically redirect github.com to github.com/feed when visiting GitHub’s homepage
// @match https://github.com/*
// @run-at document-start
// @grant none
// @license MIT
// ==/UserScript==
(function () {
'use strict';
const { hostname, pathname, search, hash } = window.location;
if (
hostname === 'github.com' &&
pathname === '/' &&
!search &&
!hash
) {
window.location.replace('https://github.com/feed');
}
})();