Pins scrolling header to the top of the page.
当前为
// ==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";