Tapas Navbar Fix

Makes the nav-bar static instead of fixed at the top of the page.

  1. // ==UserScript==
  2. // @name Tapas Navbar Fix
  3. // @version 0.1
  4. // @description Makes the nav-bar static instead of fixed at the top of the page.
  5. // @author Kie
  6. // @match *://tapas.io/*
  7. // @grant none
  8. // @icon https://upload.wikimedia.org/wikipedia/commons/6/62/Tapas-logo.png
  9. // @namespace https://greasyfork.org/users/101138
  10.  
  11. // ==/UserScript==
  12.  
  13. $(document).ready(function() {
  14. 'use strict';
  15. $('.global-nav .global-nav-content').css('position', 'static');
  16. })();