Tumblr No Scrolling Header

Pins scrolling header to the top of the page.

目前為 2014-10-30 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Tumblr No Scrolling Header
// @namespace   TNSH
// @description Pins scrolling header to the top of the page.
// @include     https://www.tumblr.com/*
// @version     1
// @grant       none
// @license     GNU GPL v3
// ==/UserScript==

var h = document.getElementsByClassName("l-header-container l-header-container--refresh");
if (h.length >= 1)
	h[0].style.position = "absolute";