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
| #!/bin/bash | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| # Download all ticked blocklists from The Firebog's "The Big Blocklist | |
| # Collection" [0] and block access to them with Unbound by redirecting traffic | |
| # to 0.0.0.0. | |
| # | |
| # [0]: https://firebog.net | |
| ( |
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
| RAR registration data | |
| WinRAR | |
| Unlimited Company License | |
| UID=4b914fb772c8376bf571 | |
| 6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d | |
| cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717 | |
| 7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565 | |
| b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd | |
| 982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190 | |
| 6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9 |
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
| # Copy your Tampermonkey storage.js into the same directory as this script. | |
| # It'll extract the user scripts from storage.js and write them as .user.js files | |
| # in the current working directory. | |
| add-type -as System.Web.Extensions | |
| $JSON = new-object Web.Script.Serialization.JavaScriptSerializer | |
| $obj = $JSON.DeserializeObject((gc storage.js)) | |
| foreach ($key in $obj.keys) { | |
| foreach ($val in $obj[$key].value) { |
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 Disable Page Visibility API | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Disables JS events on whole page focus/unfocus. Usefull to prevent ads stop when switching to another tab. | |
| // @author Louis Chanouha | |
| // @match *://*/* | |
| // @grant none | |
| // ==/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 Straight Google | |
| // @id straight_google_pokerface | |
| // @version 1.17.13 | |
| // @author Pokerface - Kevin | |
| // @namespace in.co.tossing.toolkit.google | |
| // @description Remove URL redirection from google products | |
| // @license GPL v3 or later version | |
| // @downloadURL https://userscripts.org/scripts/source/121261.user.js | |
| // @updateURL https://userscripts.org/scripts/source/121261.meta.js |