synthicyde wrote...
Not quite what I'm looking for. There should be an auto generated menu of just my purchases ready to view. That tells me what I got but doesn't link to them.
I couldn't find anything on the website for that, so I wrote a simple Greasemonkey script for it:
// ==UserScript==
// @name Hide FAKKU! Unpurchased
// @namespace https://fakku.net/
// @version 0.1
// @description Hide unpurchased items in your FAKKU! library
// @author M.I.X
// @match https://www.fakku.net/users/*/library
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
(function() {
'use strict';
addGlobalStyle('.library .not-purchased { display: none; }');
})();
With that script enabled you should be able to go to your library and have it only display what you own.