Disable Fixed Header

Changes the CSS of the header of http://tsumino.com on doujin pages from "fixed" to "absolute".

  1. // ==UserScript==
  2. // @name Disable Fixed Header
  3. // @namespace https://greasyfork.org/en/users/20118
  4. // @description Changes the CSS of the header of http://tsumino.com on doujin pages from "fixed" to "absolute".
  5. // @include http://tsumino.com/Home/Read/*
  6. // @version 1.1
  7. // @grant none
  8. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js
  9. // Credits: Thank you Toby for the help.
  10. // ==/UserScript==
  11. $(".navbar-fixed-top").css("position","absolute");