Genius Auto Old Song Page

When it detects that you are on a lyrics page, it reloads the page with the old interface.

// ==UserScript==
// @name         Genius Auto Old Song Page
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  When it detects that you are on a lyrics page, it reloads the page with the old interface.
// @author       Yelo
// @include      https://genius.com/*
// @match        https://genius.com/*
// @icon         https://assets.genius.com/images/apple-touch-icon.png?1659714721
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const url = document.URL.split("-");
    const lastArg = url[url.length - 1];
    if(lastArg === "lyrics" || lastArg === "annotated") {
        window.location.href = `${document.URL}?bagon=1`;
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址