Full-Edge Redirect

Redirects the user to the Full-Edge README on GitHub.

// ==UserScript==
// @name         Full-Edge Redirect
// @name:pt-BR   Redirecionar para README do Full-Edge
// @namespace    https://github.com/DevZurvan/Full-Edge
// @version      1.0.0
// @description  Redirects the user to the Full-Edge README on GitHub.
// @description:pt-BR  Redireciona o usuário para o README do Full-Edge no GitHub.
// @author       DevZurvan
// @match        *://*/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.location.href = 'https://github.com/DevZurvan/Full-Edge/blob/main/README.md';
})();