remove spotify web ad

try to take over the world!

  1. // ==UserScript==
  2. // @name remove spotify web ad
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author DannyWu
  7. // @match https://open.spotify.com/album/1aNkIWX1Uz0mSUK3OAFygO
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. document.querySelector(".Root__ads-container").remove();
  14. // Your code here...
  15. })();