FIMFiction UserScripts 383 members · 0 stories
Comments ( 4 )
  • Viewing 1 - 50 of 4
Selbi
Group Admin

This script recolors the author's notes and stats footers on story pages. The colors can be customized to your needs by modifying the hex codes.

// ==UserScript==
// @name FIMFiction Story Page CleanUp
// @namespace Selbi
// @include /^http[s]?://www\.fimfiction\.net/story/\d+/\d+/.*/.*$/
// @version 1
// ==/UserScript==

// Recolor Author's Notes and story stats footer.
var sheet = document.createElement('style')
sheet.innerHTML = "div.chapter_footer {background-color: #1A1A1A; color: #999999;} div.content div.message_no_image {background-color: #202020; color: #999999; border:1px solid #dcdcdc;}";
document.body.appendChild(sheet);

Comment posted by ssokolow deleted Dec 8th, 2013
ssokolow
Group Contributor

1054095

Would you mind if I wrote a version of this in pure CSS for Stylish and posted it to my account on Userstyles.org?

They support placeholder tokens which allows the download page to offer a customization GUI like the one I wrote for my port of yrfoxtaur's FiMFiction.net Recolorizer.

Selbi
Group Admin
  • Viewing 1 - 50 of 4