Skip to content

Instantly share code, notes, and snippets.

View CanYouJustWorkPlease's full-sized avatar

CanYouJustWorkPlease

View GitHub Profile
@CanYouJustWorkPlease
CanYouJustWorkPlease / Extract Youtube playlist link for Potplayer.user.js
Last active November 30, 2020 09:49
Extract Youtube playlist link for Potplayer
@CanYouJustWorkPlease
CanYouJustWorkPlease / Expand all posts Quora.user.js
Created November 30, 2020 09:53
An attempt of expanding all posts on quora.com
// ==UserScript==
// @author CanYouJustWorkPlease
// @name Expand all posts Quora
// @namespace http://tampermonkey.net/
// @version 0.1
// @description An attempt of expanding all posts on quora.com
// @match *://*.quora.com/*
// @grant none
// @run-at document-idle
// @require http://code.jquery.com/jquery-3.3.1.min.js
@CanYouJustWorkPlease
CanYouJustWorkPlease / 9gag expand comments and hide author.user.js
Last active November 30, 2020 10:02
Expands comments and hides author name and other stuff next to the name in comments for 9 gag.com
// ==UserScript==
// @name 9gag expand comments and hides author name in the comments
// @author CanYouJustWorkPlease
// @version 0.1
// @match https://9gag.com/gag/*
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
@CanYouJustWorkPlease
CanYouJustWorkPlease / Hide elements texts and Show Answer for ankiweb.net bot.user.js
Last active November 30, 2020 10:08
Hides elements text and "Show Answer" for ankiweb.net
// ==UserScript==
// @name Hide elements text and Show Answer for ankiweb.net
// @author CanYouJustWorkPlease
// @version 0.1
// @match https://ankiuser.net/study/
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
// ==UserScript==
// @name Hide Youtube left menu (sidebar)
// @author CanYouJustWorkPlease
// @version 0.1
// @exclude https://*.youtube.com/watch?v=*
// @match https://*.youtube.com/*
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
@CanYouJustWorkPlease
CanYouJustWorkPlease / Youtube time_continue redirect.user.js
Created November 30, 2020 10:17
Removes the time_continue parameter from the URL
// ==UserScript==
// @name Youtube time_continue redirect
// @author CanYouJustWorkPlease
// @description Removes the time_continue parameter from the URL
// @run-at document-start
// @icon https://www.youtube.com/favicon.ico
// @include https://*youtube.com/*
(function (){
// ==UserScript==
// @name Warn before closing each tab
// @author CanYouJustWorkPlease
// @version 0.1
// @match *
// @grant none
// ==/UserScript==
window.onbeforeunload = function() {
@CanYouJustWorkPlease
CanYouJustWorkPlease / Force Horizontal Scrollbar on All Pages.user.js
Created November 30, 2020 10:23
Forces horizontal scrollbar on all pages
// ==UserScript==
// @name Force Horizontal Scrollbar on All Pages
// @author CanYouJustWorkPlease
// @include *
// ==/UserScript==
(function(d){d.head.appendChild(d.createElement('style')).innerText='html{overflow-x:scroll;}'}(document))();
@CanYouJustWorkPlease
CanYouJustWorkPlease / Remove [edit], reference numbers and guidance panel from wikipedia.user.js
Last active November 30, 2020 10:28
Removes [edit], reference numbers and guidance panel from wikipedia
// ==UserScript==
// @name Remove [edit], reference numbers and guidance panel from wikipedia
// @author CanYouJustWorkPlease
// @include http*://*.wikipedia.org*
// @run-at document-start
// ==/UserScript==
(function(d) {
d.head.appendChild(d.createElement('style')).innerText = '#mw-content-text > div > table, div#toc.toc, .reference, .mw-editsection{display:none}';
}(document))();
@CanYouJustWorkPlease
CanYouJustWorkPlease / Image dimmer by 50% for Youtube.user.js
Created November 30, 2020 10:35
Reduces image brightness by half on Youtube
// ==UserScript==
// @name Image dimmer by 50% for Youtube
// @author CanYouJustWorkPlease
// @description Reduces image brightness by half on Youtube
// @match http*://*.youtube.com/*
// ==/UserScript==
(function(d){d.head.appendChild(d.createElement('style')).innerText='#title,yt-formatted-string,#video-title,#subscribe-button,.img,img{-webkit-filter:brightness(50%)}'}(document))();