Advertisement
Guest User

Untitled

a guest
May 30th, 2022
983
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name feedly cent
  3. // @version 0.1
  4. // @description feedly cent compat hack
  5. // @match https://feedly.com/*
  6. // ==/UserScript==
  7.  
  8. (function() {
  9. 'use strict';
  10.  
  11. const head = document.getElementsByTagName('head')[0];
  12.  
  13. if (!head) return;
  14.  
  15. const style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = '.right-col > div > div { display: block !important }';
  18.  
  19. head.appendChild(style);
  20. })();
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement