Disable Fixed Header

Stops the header of http://tsumino.com from scrolling with the page in doujins. Not perfect.

目前為 2015-11-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Disable Fixed Header
// @namespace   https://greasyfork.org/en/users/20118
// @description Stops the header of http://tsumino.com from scrolling with the page in doujins. Not perfect.
// @include     http://tsumino.com/Home/Read/*
// @version     0.1
// @grant       none
// ==/UserScript==
// Get the element by their class name
// Get the element by their class name
$( document ).ready( function() {
    $( ".navbar-fixed-top" ).removeClass();
});