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
| javascript:(function(d,b,s){ | |
| s=d.head.appendChild(d.createElement("style")); | |
| d.addEventListener('keypress', function(e){ | |
| // Press "+" to increase brightness | |
| if (e.key=='+'&&b<100) | |
| b+=50; | |
| // Press "-" to decrease brightness | |
| else if (e.key=='-'&&b>50) | |
| b-=50; | |
| s.innerText = ".img,img{-webkit-filter:brightness("+b+"%)}" |
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
| @echo off | |
| set date_and_time=#1_%date:~-10,2%-%date:~3,2%-%date:~-4,4%_%time:~0,2%.%time:~3,2%.%time:~6,2%.#2 | |
| md "%USERPROFILE%\Chrome_old_versions\" | |
| set dirct="%USERPROFILE%\Chrome_old_versions\Chrome_%date:~-10,2%-%date:~3,2%-%date:~-4,4%_%time:~0,2%.%time:~3,2%.%time:~6,2%" | |
| md "%dirct%" | |
| cd "%dirct%" | |
| curl --output-dir %dirct% https://dl.google.com/chrome/install/{ChromeStandaloneSetup64}.{exe} -o %date_and_time% | |
| curl --output-dir %dirct% https://dl.google.com/chrome/install/beta/{ChromeBetaStandaloneSetup64}.{exe} -o %date_and_time% | |
| curl --output-dir %dirct% https://dl.google.com/chrome/install/dev/{ChromeDevStandaloneSetup64}.{exe} -o %date_and_time% | |
| curl --output-dir %dirct% https://dl.google.com/chrome/install/{ChromeStandaloneSetup}.{exe} -o %date_and_time% |
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 Force Vertical Scrollbar on All Pages | |
| // @author CanYouJustWorkPlease | |
| // @include * | |
| // ==/UserScript== | |
| (function(d){d.head.appendChild(d.createElement('style')).innerText='html{overflow-y:scroll;}'}(document))(); |
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 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))(); |
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 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))(); |
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 Force Horizontal Scrollbar on All Pages | |
| // @author CanYouJustWorkPlease | |
| // @include * | |
| // ==/UserScript== | |
| (function(d){d.head.appendChild(d.createElement('style')).innerText='html{overflow-x:scroll;}'}(document))(); |
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 Warn before closing each tab | |
| // @author CanYouJustWorkPlease | |
| // @version 0.1 | |
| // @match * | |
| // @grant none | |
| // ==/UserScript== | |
| window.onbeforeunload = function() { |
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 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 (){ |