Skip to content

Instantly share code, notes, and snippets.

@MWFIAE
Created June 3, 2018 09:13
Show Gist options
  • Save MWFIAE/4196ebc12b02c1819ceccfdb65d38f6a to your computer and use it in GitHub Desktop.
Save MWFIAE/4196ebc12b02c1819ceccfdb65d38f6a to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Steemnova - Sidebar hidder
// @namespace http://tampermonkey.net/
// @version 0.1
// @description give me your cookies!
// @author MWFIAE
// @match https://steemnova.intinte.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
let sidebar= document.querySelector("aside");
if(sidebar)
sidebar.style.display="none";
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment