This file contains hidden or 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 Steam Hover Info | |
| // @namespace steam-hover-info | |
| // @author otacoo | |
| // @version 1.0 | |
| // @description Hover over any Steam Store link to see game name, description, header image, screenshots, and rating | |
| // @match *://boards.4chan.org/* | |
| // @match *://8chan.moe/* | |
| // @match *://8chan.st/* | |
| // @grant GM_xmlhttpRequest |
This file contains hidden or 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 4chan Collage Creator | |
| // @namespace 4chan-collage-creator | |
| // @author otacoo | |
| // @version 1.7.1 | |
| // @description Create collages from images in a 4chan thread | |
| // @match https://boards.4channel.org/*/thread/* | |
| // @match https://boards.4chan.org/*/thread/* | |
| // @grant GM_xmlhttpRequest | |
| // @connect i.4cdn.org |
This file contains hidden or 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
| """ | |
| LoRA Style Explorer - SD WebUI Script | |
| Generates one image per LoRA from a list, switching LoRAs automatically. | |
| Most of this code is from the X/Y/Z plot from AUTOMATIC1111/stable-diffusion-webui. | |
| Works with auto complete like the sd-webui-tagcomplete extension. | |
| Every LoRA entry and its trigger word needs to be separated by a comma, e.g. <lora:Example01:1.0> trigger_word traditional_media, <lora:OtherLora:0.75> trigger_word, | |
| Put this script into the /scripts folder of SD WebUI. | |
| """ | |
| import os |