NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Icons8 collection icon names // @namespace https://openuserjs.org // @version 0.1 // @updateURL https://openuserjs.org/meta/anrichvs/Icons8_collection_icon_names.meta.js // @description Show icon names below icons in a collection // @author Anrich van Schalkwyk // @match https://icons8.com/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle('.icons-set__icon {height: initial !important;}'); GM_addStyle('.icons-set__icon-data {display: block !important;}'); })();