Genius - Remove Complete the Song Sidebar

Removes the “Complete the Song” sidebar.

  1. // ==UserScript==
  2. // @name Genius - Remove Complete the Song Sidebar
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Removes the “Complete the Song” sidebar.
  6. // @author Tu nombre
  7. // @match https://genius.com/*-lyrics
  8. // @match https://genius.com/*-annotated
  9. // @grant none
  10. // @run-at document-end
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. function removeSidebar() {
  18. const sidebar = document.querySelector('aside.ContributorSidebar__Sidebar-sc-4d580236-0.ZVgcz');
  19. if(sidebar) {
  20. sidebar.remove();
  21. console.log('Sidebar removed');
  22. }
  23. }
  24.  
  25. document.addEventListener('DOMContentLoaded', removeSidebar);
  26. setTimeout(removeSidebar, 2000);
  27. })();

QingJ © 2025

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