Last active
August 22, 2024 20:53
-
-
Save hasegawayosuke/cf2f7bcf641b90d0ee4e to your computer and use it in GitHub Desktop.
Hide CSS files of Fiddler tracif
This file contains 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
// Open Fiddler and Choose "Rules" menu, click "Customize Rules..." and add this code to CustomRule.js | |
class Handlers | |
{ | |
// .... | |
public static RulesOption("Hide CSS") | |
BindPref("fiddlerscript.rules.HideCSS") | |
var m_HideCSS: boolean = false; | |
// .... | |
static function OnBeforeResponse(oSession: Session) { | |
// .... | |
if (m_HideCSS && oSession.oResponse.headers.ExistsAndContains("Content-Type", "text/css") ) | |
{ | |
oSession["ui-hide"] = "true"; | |
} | |
// .... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You may also want to exclude ajax when filtering JS:
maybe also add filter for .js file extensions since some websites may include static js files with ajax