// ==UserScript== // @name GreasyFork Total Scripts // @namespace PXgamer // @version 0.1 // @description Shows a user's total scripts count on GreasyFork // @author PXgamer // @include *greasyfork.org/en/users/* // @grant none // @downloadURL none // ==/UserScript== /*jshint multistr: true */ (function() { 'use strict'; var l = $('li[data-script-id]').length; if (l == 1) { $('div.width-constraint h2').append(' [' + l + ' Total Script]'); } else { $('div.width-constraint h2').append(' [' + l + ' Total Scripts]'); } })();