Created
February 12, 2020 00:14
-
-
Save Eccenux/1e06f3fb52d8c47274304d7527c062e8 to your computer and use it in GitHub Desktop.
TVN24 user script
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 TVN24 mobile fixes | |
// @namespace pl.enux | |
// @version 0.0.1 | |
// @description Try to take over the world! As usual :-] | |
// @author Eccenux | |
// @match https://tvn24.pl/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
var cssText = ` | |
.landscape-layer { | |
display: none !important; | |
} | |
`; | |
GM_addStyle(cssText); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment