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
#!/bin/bash -e | |
source parse-arguments.sh | |
REQUIRED_ARGUMENTS=( | |
"arg-1" | |
"arg-2" | |
) | |
OPTIONAL_ARGUMENTS=( |
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 Print Recipes | |
// @version 0.1.5 | |
// @author Buntelrus | |
// @description Make printing recipes easier | |
// @homepage https://buntel.de | |
// @match https://www.zdf.de/* | |
// @match https://www.swr.de/buffet* | |
// @downloadURL https://gist.github.com/Buntelrus/1508cb9c1de48da29c03a9b278042697/raw/main.bundle.min.user.js | |
// @updateURL https://gist.github.com/Buntelrus/1508cb9c1de48da29c03a9b278042697/raw/main.bundle.min.user.js |
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
/** | |
* This prepares html | |
* You can adjust your html directly and then delete this code block. | |
*/ | |
//create container element which will have the exact width of its content (image) | |
const container = document.createElement('div') | |
//get your slider element | |
let slider = document.querySelector('.beforeAfterSlidebar') | |
//override position absolute (you need 1 image in dom flow for the container to set width properly) | |
slider.children[0].style.position = 'initial' |
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 Old Reddit Enhancer | |
// @version 0.3.3 | |
// @author Buntelrus | |
// @description hide comments + time tracking | |
// @homepage https://buntel.de | |
// @match https://old.reddit.com/* | |
// @exclude https://old.reddit.com/chat* | |
// @downloadURL https://gist.github.com/Buntelrus/6914a08285e215fdd9c2530661d9d81c/raw/main.bundle.min.user.js | |
// @updateURL https://gist.github.com/Buntelrus/6914a08285e215fdd9c2530661d9d81c/raw/main.bundle.min.user.js |
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 Fantasy Bundesliga | |
// @namespace https://fantasy.bundesliga.de | |
// @version 0.1.1 | |
// @description add Team Value to Transferview and hide infoBox if desired | |
// @author You | |
// @match https://fantasy.bundesliga.de/player_transfers | |
// @grant none | |
// ==/UserScript== |