Last active
May 14, 2016 16:59
-
-
Save Saoneth/fee6e837ec2fd97fccf343184fa6e0dc to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Bato.to Mobile Theme | |
// @namespace http://saoneth.pl/ | |
// @version 0.3 | |
// @description try to take over the world! | |
// @author Saoneth | |
// @match http://bato.to/* | |
// @match https://bato.to/* | |
// @grant none | |
// @updateURL https://gist.github.com/Saoneth/fee6e837ec2fd97fccf343184fa6e0dc/raw/batoto_mobile.user.js | |
// ==/UserScript== | |
var s = document.createElement('style'); | |
s.innerHTML = '#user_link, #themeToggle, #nav_app_members, #nav_app_subscriptions, #nav_menu_5, #footer_utilities {display: none !important} #search_wrap {min-width: 280px !important} .wrapper {min-width: 600px !important}'; | |
document.head.appendChild(s); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment