Skip to content

Instantly share code, notes, and snippets.

@jnv
Created August 30, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnv/74ed876f4ed5d967db1b to your computer and use it in GitHub Desktop.
Save jnv/74ed876f4ed5d967db1b to your computer and use it in GitHub Desktop.
Remove width limitations on Feedly; useful for pictures and comics.
// ==UserScript==
// @id feedlyexpand@jnv.gihtub.io
// @name Feedly - Expand Content
// @version 2015.06.15
// @namespace http://jnv.github.io
// @author jnv
// @description Remove width limitations on Feedly; useful for pictures and comics.
// @include https://feedly.com/*
// @include http://feedly.com/*
// @domain feedly.com
// @run-at document-end
// @grant GM_addStyle
// ==/UserScript==
var style = "#sideArea { display: none !important; } ";
style += "#mainBar, #feedlyPage { width: 100% !important; } ";
style += ".u100Entry, .entryBody { max-width: 100% !important; } ";
style += "#feedlyPart { float: none !important; } ";
style += ".entryBody .content img { max-width: 100% !important; width: auto !important; }"
GM_addStyle(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment