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
| -- Global variable to store the initial state of night color | |
| local night_color_was_enabled = false | |
| local was_paused = false | |
| -- Function to execute shell commands and capture output | |
| local function execute_command(cmd) | |
| local handle = io.popen(cmd) | |
| local result = handle:read("*a") | |
| handle:close() | |
| return result:match("^%s*(.-)%s*$") -- Trim whitespace |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 Medium Paywall Bypass | |
| // @namespace Violentmonkey Scripts | |
| // @run-at document-start | |
| // @match *://*.medium.com/* | |
| // @match *://medium.com/* | |
| // @match *://*/* | |
| // @grant none | |
| // @version 4.1 | |
| // @inject-into content |
OlderNewer