Last active
February 27, 2020 18:21
-
-
Save Klaster1/4fc9d45e8cf7eff4cb160733da47ee0e to your computer and use it in GitHub Desktop.
Weight Weenies emoji fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Weight Weenies emoji fix | |
// @version 1.0 | |
// @description Reverses substitution of emoji to SVG. | |
// @author Klaster_1 | |
// @icon http://weightweenies.starbike.com/images/weenie.gif | |
// @match https://weightweenies.starbike.com/forum/viewtopic.php* | |
// @grant none | |
// @downloadURL https://gist.github.com/Klaster1/4fc9d45e8cf7eff4cb160733da47ee0e/raw/ww_emoji_fix.user.js | |
// @updateURL https://gist.github.com/Klaster1/4fc9d45e8cf7eff4cb160733da47ee0e/raw/ww_emoji_fix.user.js | |
// ==/UserScript== | |
document.querySelectorAll('.emoji').forEach(el => { | |
el.after(el.getAttribute('alt')); el.remove(); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment