Greasy Fork

Greasy Fork is available in English.

图灵阅读-固定标题栏

固定阅读页标题栏

目前为 2019-08-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         图灵阅读-固定标题栏
// @namespace    https://github.com/atever/browserfork/edit/master/ituring.js
// @version      0.1.1
// @description  固定阅读页标题栏
// @license      MIT License
// @author       [email protected]
// @match        http://www.ituring.com.cn/book/tupubarticle/*
// @grant        none
// ==/UserScript==


(function() {
  'use strict';
  document.getElementsByClassName("layout-head")[0].style='position: absolute';
})();