Last active
July 18, 2022 02:15
-
-
Save tkit1994/79fbe8adf841e8899b605c511b34ffd2 to your computer and use it in GitHub Desktop.
Revisions
-
tkit1994 revised this gist
Jul 18, 2022 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,8 +7,8 @@ // @namespace com.github.tkit1994 // @license MIT // @homepage https://github.com/tkit1994/fucking-carl // @updateURL https://gist.github.com/tkit1994/79fbe8adf841e8899b605c511b34ffd2/raw/fucking-carl.user.js // @downloadURL https://gist.github.com/tkit1994/79fbe8adf841e8899b605c511b34ffd2/raw/fucking-carl.user.js // @supportURL https://github.com/tkit1994/fucking-carl // @match https://programmercarl.com/* // @run-at document-idle -
tkit1994 revised this gist
Jul 18, 2022 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ // ==UserScript== // @name fucking-carl // @version 0.0.1 @@ -6,8 +7,8 @@ // @namespace com.github.tkit1994 // @license MIT // @homepage https://github.com/tkit1994/fucking-carl // @updateURL https://gist.github.com/tkit1994/79fbe8adf841e8899b605c511b34ffd2/raw/leetcode-copy.user.js // @downloadURL https://gist.github.com/tkit1994/79fbe8adf841e8899b605c511b34ffd2/raw/leetcode-copy.user.js // @supportURL https://github.com/tkit1994/fucking-carl // @match https://programmercarl.com/* // @run-at document-idle -
tkit1994 created this gist
Jul 18, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ // ==UserScript== // @name fucking-carl // @version 0.0.1 // @description A userscript to bypass programmingcarl.com's block // @author HaoCheng <[email protected]> // @namespace com.github.tkit1994 // @license MIT // @homepage https://github.com/tkit1994/fucking-carl // @updateURL https://gist.github.com/tkit1994/cace80dfd3487af8ff6e43061b54e5db/raw/leetcode-copy.user.js // @downloadURL https://gist.github.com/tkit1994/cace80dfd3487af8ff6e43061b54e5db/raw/leetcode-copy.user.js // @supportURL https://github.com/tkit1994/fucking-carl // @match https://programmercarl.com/* // @run-at document-idle // @grant GM_addStyle // ==/UserScript== (function() { "use strict"; GM_addStyle(` #read-more-wrap { display: none; } `); const style = ""; setTimeout(() => { let container = document.querySelector("#container"); container.setAttribute("style", "{ overflow: auto; height: auto }"); }, 2e3); })();