x7f

Hide overflow on app page

x7f
Aug 24th, 2020 (edited)
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Hide overflow on app page
  3. // @match        https://vk.com/*
  4. // ==/UserScript==
  5.  
  6. (function() {
  7.     'use strict';
  8.     document.body.querySelector('.apps_main') !== null && document.body.style.overflow="hidden";
  9. })();
Add Comment
Please, Sign In to add comment