MetroLyrics - Simple

Trash everything on the site. Just a simple banner and the lyrics.

  1. // ==UserScript==
  2. // @name MetroLyrics - Simple
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Trash everything on the site. Just a simple banner and the lyrics.
  6. // @author jurassicplayer
  7. // @match http://www.metrolyrics.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function addStyleString(str) {
  15. var node = document.createElement('style');
  16. node.innerHTML = str;
  17. document.body.appendChild(node);
  18. }
  19.  
  20. addStyleString('.content .col-wide { padding: 30px 30px 0; margin: auto; float: none; }')
  21. addStyleString('div:empty, footer, sd-highlight { display:none !important; }');
  22. addStyleString('.js-col1, .writers, .ad, .sharing, .leaderboard, .big-box, .driver-related, .collapse, .bottom-mpu, .video-container-inline, .MLringtones, .note, .mid-song-wrap { display: none !important; }');
  23. })();

QingJ © 2025

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