Skip to content

Instantly share code, notes, and snippets.

@GWuk
Created December 31, 2015 19:23
Show Gist options
  • Save GWuk/83c0fcf8b0171f97b833 to your computer and use it in GitHub Desktop.
Save GWuk/83c0fcf8b0171f97b833 to your computer and use it in GitHub Desktop.
Greasemonkey script - entfernt den gelben Balken in den derstandard.at Kommentaren
// ==UserScript==
// @name Don't eat yellow snow
// @namespace GWu
// @description entfernt den gelben Balken in den derstandard.at Kommentaren
// @author GWu
// @include http://d*standard.at/*
// @include https://d*standard.at/*
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle ( " \
.forum .posting.is-topposting .posting-container { \
border-left: none !important; \
} \
" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment