Advertisement
Guest User

KHF_Twitfeed

a guest
Aug 22nd, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.56 KB | Source Code | 0 0
  1. // ==UserScript==
  2. // @name         KHF TwitFeed Size limiter
  3. // @namespace    namespace_twitfeed
  4. // @version      20220822-0.1
  5. // @description  Adjust Twitter feed size and add scrollbar
  6. // @author       Bardicrune
  7. // @match        https://www.khinsider.com/*
  8. // @icon         https://www.google.com/s2/favicons?sz=64&domain=khinsider.com
  9. // @grant        GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.  
  15.     GM_addStyle('.twitter-timeline { height: 700px !important; overflow: auto !important; scrollbar-width: thin !important; }');
  16.  
  17. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement