Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name WhaleStickers
- // @namespace WhaleStickers
- // @version 0.2
- // @description Express yourself with these funny animals
- // @author Anonymous
- // @match *://boards.4chan.org/bant/*
- // @match *://archive.nyafuu.org/bant/*
- // @match *://archive.palanq.win/bant/*
- // @match *://archived.moe/bant/*
- // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAB3SURBVChTY/z5Tuo/AwWACUqDAbvQMygLN0BXAzcAJAF0DZSHG4DUIBsCNgCmGUSj24AMYPLIhoANIMZmdADTw/gfCMAsMgHj/wv3EQboK0AZBMDFB1AGWizAACMjI5xGZmMDOL0A0gCTQmajA4rDAKsXiAcMDAB3dTC7NNMndgAAAABJRU5ErkJggg==
- // @grant none
- // ==/UserScript==
- var police = "<img src='https://archive-media.palanq.win/bant/image/1679/73/1679731070605.png' width='180' height='185'>";
- var whale1 = "<img src='https://archive-media.palanq.win/bant/image/1647/61/1647616305776.png' width='170' height='115'>";
- var whalefact = "<img src='https://gyate.net/index.php?q=image/2190.png' width='220' height='140'>";
- var whalekwab = "<img src='https://gyate.net/index.php?q=image/7522.png' width='200' height='120'>";
- var sprokewhaleotter = "<img src='https://gyate.net/index.php?q=image/7862.png' width='240' height='140'>";
- var whalebruh = "<img src='https://gyate.net/index.php?q=image/6736.png' width='220' height='140'>";
- var whalesleep = "<img src='https://archive-media.palanq.win/bant/image/1642/23/1642235943175.png' width='100' height='51'>";
- var whalecronk = "<img src='https://archive-media.palanq.win/bant/image/1642/23/1642235961779.png' width='110' height='73'>";
- var gasa = "<img src='https://archive-media.palanq.win/bant/image/1648/14/1648141065647.png' width='150' height='100'>";
- var yuyudrink = "<img src='https://archive-media.palanq.win/bant/image/1642/23/1642235978964.png' width='170' height='100'>";
- var sprokewhale = "<img src='https://archive-media.palanq.win/bant/image/1684/68/1684687239379.png' width ='170' height='90'>";
- var keikipog = "<img src='https://gyate.net/index.php?q=image/2876.png' width = '210' height = '110'>";
- var lambda = "<img src='https://gyate.net/index.php?q=image/4000.png' width = '100' height = '173'>";
- function yukariWhale(text, image) {
- for (const parent of document.querySelectorAll("div.thread *, article.clearfix.thread *")) {
- for (const child of parent.childNodes) {
- if (child.nodeType === Node.TEXT_NODE) {
- const subNode = document.createElement("span");
- subNode.innerHTML = child.textContent.replace(text, image);
- parent.insertBefore(subNode, child);
- parent.removeChild(child);
- }
- }
- }
- }
- yukariWhale(/:yukariwhale:/g, whale1);
- yukariWhale(/:whalefact:/g, whalefact);
- yukariWhale(/:whalekwab:/g, whalekwab);
- yukariWhale(/:sprokewhaleotter:/g, sprokewhaleotter);
- yukariWhale(/:keikipog:/g, keikipog);
- yukariWhale(/:whalesleep:/g, whalesleep);
- yukariWhale(/:whalecronk:/g, whalecronk);
- yukariWhale(/:gasa:/g, gasa);
- yukariWhale(/:yuyudrink:/g, yuyudrink);
- yukariWhale(/:sprokewhale:/g, sprokewhale);
- yukariWhale(/:police:/g, police);
- yukariWhale(/:whalebruh:/g, whalebruh);
- yukariWhale(/:lambda:/g, lambda);
Add Comment
Please, Sign In to add comment