Created
December 31, 2015 19:23
-
-
Save GWuk/83c0fcf8b0171f97b833 to your computer and use it in GitHub Desktop.
Greasemonkey script - entfernt den gelben Balken in den derstandard.at Kommentaren
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 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