Extends the Chrome Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews. https://leviolson.com/posts/chrome-ext-better-network-panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.3 KiB

4 years ago
  1. @font-face {
  2. font-family: "icomoon";
  3. src: url("../fonts/icomoon.eot");
  4. src: url("../fonts/icomoon.eot") format("embedded-opentype"), url("../fonts/icomoon.ttf") format("truetype"),
  5. url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.svg") format("svg");
  6. font-weight: normal;
  7. font-style: normal;
  8. font-display: block;
  9. }
  10. [class^="icon-"],
  11. [class*=" icon-"] {
  12. /* use !important to prevent issues with browser extensions that change fonts */
  13. font-family: "icomoon" !important;
  14. speak: never;
  15. font-style: normal;
  16. font-weight: normal;
  17. font-variant: normal;
  18. text-transform: none;
  19. line-height: 1;
  20. /* Better Font Rendering =========== */
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23. }
  24. /* NEW */
  25. .icon-floppy-disk:before {
  26. content: "\e962";
  27. }
  28. .icon-search:before {
  29. content: "\e986";
  30. }
  31. .icon-meter:before {
  32. content: "\e9a6";
  33. }
  34. .icon-download3:before {
  35. content: "\e9c7";
  36. }
  37. .icon-upload3:before {
  38. content: "\e9c8";
  39. }
  40. .icon-link:before {
  41. content: "\e9cb";
  42. }
  43. .icon-blocked:before {
  44. content: "\ea0e";
  45. }
  46. .icon-filter:before {
  47. content: "\ea5b";
  48. }
  49. .icon-embed:before {
  50. content: "\ea7f";
  51. }
  52. .icon-embed2:before {
  53. content: "\ea80";
  54. }
  55. .icon-terminal:before {
  56. content: "\ea81";
  57. }
  58. .icon-sphere:before {
  59. content: "\e9c9";
  60. }