Minimalist PayPal

Minimalist PayPal - http://pushka.com/coding-donation

目前为 2015-07-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Minimalist PayPal
  3. // @namespace english
  4. // @description Minimalist PayPal - http://pushka.com/coding-donation
  5. // @include http*://*paypal.com*
  6. // @version 1.1
  7. // @run-at document-start
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11.  
  12. // Main - CSS hides two classes - video add box, and call to action box under it. - also social media
  13.  
  14. var style = document.createElement('style');
  15. style.type = 'text/css';
  16. style.innerHTML = ' .moving-background-container .row-fluid{display: none !important;} ';
  17. document.getElementsByTagName('head')[0].appendChild(style);
  18.