Pretty sure it needs the changes in SillyTavern's Parser Followup 2 PR
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
{ //! HACK View multi swipe | |
let dlg; | |
let swipes = []; | |
let dom; | |
const handler = (text)=>{ | |
if (streamingProcessor.swipes.length > 0) { | |
if (!dlg) { | |
dom = document.createElement('div'); { | |
dom.style.display = 'grid'; | |
dom.style.gridTemplateColumns = `repeat(${streamingProcessor.swipes.length + 1}, 1fr)`; |
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 JPG Fish - Album Download | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Download albums from JPG Fish sites | |
// @author LenAnderson | |
// @match https://jpg.church/a/* | |
// @match https://pixl.is/album/* | |
// @match https://jpg.fishing/album/* | |
// @match https://jpg.fishing/a/* |
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
#sheld { | |
/* dimensions of the background image in pixel */ | |
--width: 1594; | |
--height: 932; | |
/* | |
offset of the Pip-Boy screen from top/right/bottom/left in pixel | |
top should be the top of the curved part of the screen, maximizing | |
the usable height | |
*/ |
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 SillyTavern - WI Next Content Shortcut | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-04-06 | |
// @description try to take over the world! | |
// @author LenAnderson | |
// @match http://localhost:8000 | |
// @grant none | |
// ==/UserScript== |
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 SillyTavern - Expand ALL The Editors | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-04-02 | |
// @description CTRL+ALT+Click into any textarea to maximize | |
// @author LenAnderson | |
// @match http://localhost:8000/ | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=undefined.localhost | |
// @grant none | |
// ==/UserScript== |
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 Bring Your Own Favicon | |
// @namespace https://github.com/LenAnderson | |
// @version 1.0.0 | |
// @description Use your own favicon | |
// @author LenAnderson | |
// @match *://*/* | |
// @grant GM_registerMenuCommand | |
// @grant GM_getValue | |
// @grant GM_setValue |
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 SillyTavern - Change Message Name | |
// @namespace https://github.com/LenAnderson | |
// @version 0.2 | |
// @description Quickly edit message names | |
// @author You | |
// @match http://localhost:8000/ | |
// @grant none | |
// ==/UserScript== |
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 SillyTavern - VideoBg | |
// @namespace https://github.com/LenAdnerson | |
// @version 0.1 | |
// @description Video Backgrounds for SillyTavern | |
// @author LenAnderson | |
// @match http://localhost:8000/ | |
// @grant none | |
// ==/UserScript== |
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
import os | |
import re | |
fsm_path = r'E:\Games\Steam\SteamApps\common\Fallout 4\Data\Tools\BodySlide\SliderPresets\FSM Fit Body Bigger Boobs - Nude.xml' | |
pipa_path = r'E:\Games\Steam\SteamApps\common\Fallout 4\Data\Tools\BodySlide\SliderPresets\PIPA 2 body.xml' | |
sliders_path = r'E:\Games\Steam\SteamApps\common\Fallout 4\Data\Tools\BodySlide\SliderCategories\CBBE.xml' | |
with open(fsm_path, 'r') as f: | |
fsm = [x.strip() for x in f.readlines() if x.strip().startswith('<SetSlider')] |
NewerOlder