我正在使用chrome regex过滤器来过滤掉网址列表。
我正在使用以下正则表达式:
^.*\.(?!css$|png|js|gif$)[^.]+$
虽然也确实排除了以?=
我想排除的网址是:
http://something.com/something.png
https://something.com/something.something.png
我想包含的网址是:
http://something.com/something
https://something.com/something/
http://something.com/something?=something
https://something.com/something?_=something
http://something.com/something.php
答案 0 :(得分:3)
啊我找到了一些我觉得适合你想要的东西。它不是正则表达式......但它是chrome开发人员工具过滤:
-mime-type:image/jpeg -mime-type:application/javascript -mime-type:text/css -mime-type:image/png -mime-type:image/gif
确保取消选中正则表达式框。然后你应该好好去。
-
表示“不包含”
完全归功于:Is there a way to filter network requests using Google Chrome developer tools?