Created
May 1, 2023 05:12
-
-
Save jxxe/a76c6578562258888b9c38c482d6dddf 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 Laravel Documentation Redirect | |
// @match https://laravel.com/docs/* | |
// @version 1.0 | |
// @author Jerome Paulos | |
// @description Automatically redirect to the latest Laravel documentation | |
// ==/UserScript== | |
(() => { | |
const latestUrl = document.querySelector('#version-switcher option[value*="/master/"] + option').value; | |
if(location.href !== latestUrl) location.href = latestUrl; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment