Facebook Fix Left Column

Freeze the left hand column of the newsfeed in position

目前为 2016-12-23 提交的版本。查看 最新版本

// ==UserScript==
// @name         Facebook Fix Left Column
// @namespace    undefined
// @version      0.1
// @description  Freeze the left hand column of the newsfeed in position
// @author       JamesBoson
// @match        http//*.facebook.com/*
// @match        https://*.facebook.com/*
// @grant        none
// @run-at       document-end
// @require      https://code.jquery.com/jquery-latest.js
// ==/UserScript==


window.onload = function(){
    'use strict';
    var att = document.createAttribute("style");
    att.value = "position: fixed;";
    var leftCol = document.getElementById('leftCol');
    document.getElementById('leftCol').setAttributeNode(att);
};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址