Skip to content

Instantly share code, notes, and snippets.

View MagicWinnie's full-sized avatar
💭
Hello World!

Dmitrii Okoneshnikov MagicWinnie

💭
Hello World!
View GitHub Profile
@MagicWinnie
MagicWinnie / VK - Redirect on pressing -My wishes-.user.js
Last active February 4, 2023 20:55
Этот скрипт перенаправляет на другую страницу при нажатии vk.com->Моя страница->Ещё->Мои желания
// ==UserScript==
// @name VK - Redirect on pressing "My wishes"
// @namespace https://github.com/MagicWinnie
// @version 1.0
// @description Этот скрипт перенаправляет на другую страницу при нажатии vk.com->Моя страница->Ещё->Мои желания
// @author MagicWinnie
// @match https://vk.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=vk.com
// @grant none
// ==/UserScript==
@MagicWinnie
MagicWinnie / NSUts-Dark-Theme.css
Last active December 16, 2021 08:52
Dark theme for NSUts
body, #left_container, #right_container, #header, #main, #footer {
background-color: #121212 !important;
}
#header {
border-bottom: 1px solid #121212 !important;
}
h1 {
color: #b1b1b1 !important;
@MagicWinnie
MagicWinnie / main.gs
Created June 7, 2021 17:02
Creating a chart using data from several sheets
function delAllChartsFromSheet(name)
{
var ss = SpreadsheetApp.getActive();
var sh = ss.getSheetByName(name);
var chts = sh.getCharts();
for (var i = 0; i < chts.length; i++)
{
sh.removeChart(chts[i]);
}
@MagicWinnie
MagicWinnie / dark-theme-scp-ru.user.js
Created December 18, 2020 10:01
Dark Theme for SCP RU Branch
// ==UserScript==
// @name Dark Theme for SCP RU Branch
// @namespace https://github.com/MagicWinnie
// @version 1.0
// @description Auto activates built-in dark theme on scpfoundation.net
// @author MagicWinnie
// @match http://scpfoundation.net/*
// @run-at document-start
// @grant none
// ==/UserScript==