Skip to content

Instantly share code, notes, and snippets.

@krmax44
Last active May 31, 2022 10:59
Show Gist options
  • Save krmax44/a28e52d0d6f7c78f1ab5b54c4394f73f to your computer and use it in GitHub Desktop.
Save krmax44/a28e52d0d6f7c78f1ab5b54c4394f73f to your computer and use it in GitHub Desktop.
Userscript to highlight vegan dishes on stw.berlin
// ==UserScript==
// @name stw.berlin veganize
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Highlight vegan dishes
// @author krmax44
// @match https://www.stw.berlin/mensen/einrichtungen/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=stw.berlin
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.row.splMeal').forEach(el => {
if (el.querySelector('img[aria-describedby="tooltip_vegan"]')) {
el.classList.add('highlight');
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment