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== | |
| // @author CanYouJustWorkPlease | |
| // @name Extract Youtube playlist link for Potplayer | |
| // @namespace https://stackoverflow.com/questions/35576512/gm-setclipboard-and-other-gm-functions-gives-an-error-in-a-firefox-but-not-chr | |
| // @match *://*.youtube.com/* | |
| // @require http://code.jquery.com/jquery-3.3.1.min.js | |
| // @grant GM.setClipboard | |
| // @grants GM_log | |
| // @run-at context-menu | |
| // ==/UserScript== |
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== | |
| // @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 |
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 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== | |
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 (){ |
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 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 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 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))(); |
OlderNewer