Toggle Reddit Sidebar

Adds a button to toggle the sidebar on Reddit, with the option to have it hidden or shown by default.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Toggle Reddit Sidebar
// @namespace    toggle-reddit-sidebar
// @version      1.0
// @description  Adds a button to toggle the sidebar on Reddit, with the option to have it hidden or shown by default.
// @author       GemedetAdept
// @match        *://*.reddit.com/*
// @credits      Adapted, with permission, from "Hide Reddit Side Bar" script by u/pm_all_ahri_art @ https://greasyfork.org/en/scripts/375201-hide-reddit-side-bar
// @license      GNU v3.0
// ==/UserScript==

var IsHidden = true;

var sidebar = document.querySelector(".side");
sidebar.style.overflow = "hidden";

function toggleSidebar () {

	if (IsHidden == true) {

		sidebar.style.height = "";
		sidebar.style.width = "";
		IsHidden = false;
	}

	else if (IsHidden == false) {

		sidebar.style.height = "0px";
		sidebar.style.width = "0px";
		IsHidden = true;
	}
}

var togglebutton = document.createElement("button");
var toggletext = document.createTextNode("toggleBar");
togglebutton.appendChild(toggletext);

togglebutton.style.fontSize = "10px";
togglebutton.style.fontWeight = "bold";
togglebutton.style.left = "4px";
togglebutton.style.color = "#81b3d9";

togglebutton.addEventListener("click", toggleSidebar);

var navBar = document.querySelector("#header");
var buttonSection = navBar.querySelector("#header-bottom-right");
var itemBarDivider = buttonSection.querySelector(".logout.hover");

buttonSection.appendChild(togglebutton);
itemBarDivider.append(" | ");
itemBarDivider.style.color = "#808080";

if (IsHidden == true) {

	sidebar.style.height = "0px";
	sidebar.style.width = "0px";
}

else if (IsHidden == false) {

	sidebar.style.height = "";
	sidebar.style.width = "";
}