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 ASSET=1 | |
| set VERSION_TXT=0 | |
| set /p VERSION_TXT=<version.txt | |
| curl -H "Authorization: %GITHUB_TOKEN%" -o latest.json https://api.github.com/repos/Hibbiki/chromium-win64/releases/latest | |
| for /f "tokens=*" %%g in ('jq -r .[\"tag_name\"] latest.json') do (set VERSION=%%g) | |
| for /f "tokens=*" %%g in ('jq -r .[\"assets\"][%ASSET%][\"browser_download_url\"] latest.json') do (set DOWNLOAD_URL=%%g) | |
| echo %VERSION% > version.txt | |
| if %VERSION% neq %VERSION_TXT% ( | |
| curl -o "%TEMP%\chromium-installer.exe" -L %DOWNLOAD_URL% |
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
| ! Title: Block AI Overview | |
| google.com/async/folsrch | |
| www.google.com##div[data-mcpr] |
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
| set oShell = CreateObject("WScript.Shell") | |
| oShell.Run "opera-proxy.exe",0 | |
| set oShell = nothing |
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
| set oShell = CreateObject("WScript.Shell") | |
| oShell.Run "tor.exe",0 | |
| set oShell = nothing |
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 Yahoo Image Search Redirect | |
| // @namespace Violentmonkey Scripts | |
| // @match https://*.images.search.yahoo.com/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Adudo | |
| // @description Redirects Yahoo image search to a different search engine | |
| // @run-at document-start | |
| // @grant GM_getValue |
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 | |
| rem 0 = arm64 | |
| rem 1 = x64 | |
| rem 2 = x86 | |
| set ARCH=1 | |
| set /a ASSET=%ARCH% | |
| set VERSION_TXT=0 | |
| set /p VERSION_TXT=<version.txt | |
| curl -H "Authorization: %GITHUB_TOKEN%" -o latest.json https://api.github.com/repos/ungoogled-software/ungoogled-chromium-windows/releases/latest | |
| for /f "tokens=*" %%g in ('jq -r .[\"tag_name\"] latest.json') do (set VERSION=%%g) |
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 Yahoo Anti-Redirect | |
| // @namespace Violentmonkey Scripts | |
| // @match https://*.yahoo.com/search* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Adudo | |
| // @description Replaces Yahoo redirect URLs with direct links | |
| // ==/UserScript== | |
| var links = document.getElementsByTagName("a"); |
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
| @-moz-document domain("yahoo.com") { | |
| :root { | |
| --logo-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARoAAABGCAMAAAAkVquwAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAD8UExURUxpcR8AWxkATSoAc08AyxwAVBQARUEHdjkDgy8FcSMAZEgAtBYFMycAaxYAPEMApj0Aj0UArgwANxMBMyIAWVcA4VsA7jgAhUsAwCgBaRMDM0EAlioBakIAnxkATkgAtxgARBIAMxkASRsATS4AdRcARTwAmC0FbikAcD0AlxQARCoFaQwAJygAakQGqUcAtkMAqDcDiSoFahEAOjcDhhUARkABoTsAlyIAXz8AlUEAp0QAsEQArkEApj8HmlQA21MA1y8Aek8AzEsAwVQI0VgA5VQH02AA9bue6kwAw00AxkkAuUoAvhAAPy8AgzAAfDoAm1IA0zQAjGAA+CJaVnIAAABJdFJOUwD+/v7+/v4BAgT9/gr+Ef7+/v4iGv7+/fo3PP5b/eDrSy2PdnNia0fwvseHecJ7zNuFq+WcsCtP2+WRPbqmX9z12+/cxuWr6UAaYgLGAAAVeUlEQVR42uyZ+XPiuBLH5VMSvnCwAwyYI4EQkuXKEshBMuTYqbEtc/3/f8y2ICQc5pj3qrb2vRr9kOIQsvqj7m93Kwj9Hr/H7/F7/BPj509KCaE/fyJ8eCahfKZ+cOr/8CD007jnyftgMHh/LdYQ2fsbsyV/51Pvbyj5v0VDst16p0YXb2jDGE9YELLBAYs7MgvYzBAL5QMM/x0D/8Kny0HpQyDL8rSrL96XLwVR9AJWrCC652epjB+E4kkkVvdO+zdxobrpZGu1UqlUq2VNU6cH6FDUL7JgOg2C5mISOZcExfAZazl73IE8yX4wOlHF23+UDObj89Wxv4E/upnNd+rtN/CB+Rh+bw+a+Z5JlxNi0Txooey6U/b+QVFvGI |
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
| <?php | |
| header("Content-Type: application/x-ns-proxy-autoconfig"); | |
| echo "var hosts = ".json_encode(explode(",",$_GET["hosts"])).";\n"; | |
| ?> | |
| function FindProxyForURL(url, host) { | |
| if(hosts.includes(host)) { | |
| return "PROXY 127.0.0.1:18080"; | |
| } | |
| return "DIRECT"; | |
| } |
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 Block AI Overview | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.google.com/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Adudo | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| GM_addStyle(` |
NewerOlder