// ==UserScript== // @name Fimfiction - Banner Alert! // @namespace arcum42 // @include http*://*fimfiction.net/group* // @version 0.2 // @description Tells you if a banner needs updating. // @downloadURL none // ==/UserScript== $(".banner_overlay").each(function() { var image_source = $(this).css("background-image"); image_source = image_source.replace(/.*\s?url\([\'\"]?/, '').replace(/[\'\"]?\).*/, ''); if (image_source.indexOf("fimfiction.net") == -1) { $(".group_name").after(' (External Banner!)'); } });