Remove header logo and giant image on Survey Monkey Website

Remove header logo and giant image on Survey Monkey Website - http://pushka.com/coding-donation

  1. // ==UserScript==
  2. // @name Remove header logo and giant image on Survey Monkey Website
  3. // @namespace english
  4. // @description Remove header logo and giant image on Survey Monkey Website - http://pushka.com/coding-donation
  5. // @include http*://*surveymonkey.com*
  6. // @version 1.6
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11.  
  12. // Main - CSS hides some block elements and expands other main divs to 100%
  13.  
  14. var style = document.createElement('style');
  15. style.type = 'text/css';
  16.  
  17.  
  18. style.innerHTML = ' .responsive-logo,.main-cta-image,#header-logo{display:none;} ';
  19.  
  20.  
  21. document.getElementsByTagName('head')[0].appendChild(style);
  22.  

QingJ © 2025

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