Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Userscript that makes the filename column bigger on SourceForge, because that shit is not responsive.
// ==UserScript==
// @name SourceForge bigger filename column
// @namespace https://gist.github.com/stefansundin/
// @homepage https://gist.github.com/stefansundin/f1e81a8f5281f6f4cac4
// @downloadURL https://gist.github.com/stefansundin/f1e81a8f5281f6f4cac4/raw/sourceforge-bigger-filename-column.user.js
// @version 0.2
// @author Stefan Sundin
// @description Makes the filename column bigger, saves you from lots of frustration.
// @match *://sourceforge.net/*/files/*
// ==/UserScript==
$('#files').css({width:'900px'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment