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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\3] | |
| "180F"=dword:00000000 |
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
| // Add just inside here: | |
| // static function OnBeforeRequest(oSession: Session) { | |
| // Don't request zstd content-encoding because Telerik didn't bother adding support. | |
| if (oSession.RequestHeaders.ExistsAndContains("Accept-Encoding", "zstd")) { | |
| oSession.RequestHeaders["Accept-Encoding"] = oSession.RequestHeaders["Accept-Encoding"].Replace(", zstd", ""); | |
| } |
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
| // Rules > Customize Rules, place this just inside the HANDLERS class... | |
| // Add a button to Fiddler's UI for "Single Browser Mode", where only one browser window will | |
| // send its traffic to Fiddler. | |
| public static BindUIButton("SingleBrowserMode \uD83D\uDC40") | |
| function LaunchSingleInstance() { | |
| // Tell the system we're not the proxy anymore | |
| FiddlerApplication.UI.actDetachProxy(); | |
| // Launch a single browser instance pointed directly at Fiddler. | |
| System.Diagnostics.Process.Start('msedge.exe', |
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
| //See https://github.com/ericlaw1979/ClipShield/blob/main/ClipShield.cpp instead |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>com.google.Chrome.extensions.bkbeeeffjjeopflfhgeknacdieedcoml</key> | |
| <dict> | |
| <key>HideProtectionToggle</key> | |
| <true/> | |
| <key>PreventBlockOverride</key> | |
| <true/> |
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
| using System; | |
| using System.Security.AccessControl; | |
| using System.Security.Principal; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| class Program | |
| { | |
| public class ProcessSecurity : NativeObjectSecurity { | |
| public ProcessSecurity(SafeHandle processHandle) |
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
| /* | |
| * This is a simple Native Message Host application. It echoes any messages | |
| * it receives. After receiving and echoing a `{"quit":1}` message, the app | |
| * will exit. | |
| */ | |
| #include <fcntl.h> | |
| #include <io.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> |
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
| var i = 0; | |
| var myVar = setInterval(myTimer, 3000); | |
| function myTimer () { | |
| var els = document.getElementById("grid-container").getElementsByClassName("ytd-expanded-shelf-contents-renderer"); | |
| if (i < els.length) { |
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
| using System; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| namespace MUTZ | |
| { | |
| [ComImport, GuidAttribute("79EAC9EE-BAF9-11CE-8C82-00AA004BA90B")] | |
| [InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)] | |
| public interface IInternetSecurityManager | |
| { |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Fiddler2\ImagesMenuExt\&JPEGGuetzli] | |
| "Command"="C:\\Users\\ericlaw\\Documents\\Fiddler2\\scripts\\Tools\\guetzli_windows_x86-64.exe" | |
| "Parameters"="{in} {out:jpg}" | |
| "Types"="image/jpeg" | |
NewerOlder