xiMatrix

filter net requests according to source, destination and type  https://addons.mozilla.org/firefox/addon/ximatrix/
git clone https://git.ce9e.org/xiMatrix.git

commit
b4688c21f88b5c51166b0df3e306008e8db02ac4
parent
89e73a91609166dfacaa3e02b4b4764337551b57
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-07-30 19:37
display context in first table cell

Diffstat

M popup.js 6 +++++-

1 files changed, 5 insertions, 1 deletions


diff --git a/popup.js b/popup.js

@@ -94,7 +94,11 @@ var createCell = function(tag, hostname, type, text) {
   94    94 
   95    95 var createHeader = function() {
   96    96     var tr = document.createElement('tr');
   97    -1     tr.append(document.createElement('th'));
   -1    97 
   -1    98     var th = document.createElement('th');
   -1    99     th.textContent = context;
   -1   100     tr.append(th);
   -1   101 
   98   102     for (const type of shared.TYPES) {
   99   103         tr.append(createCell('th', '*', type, type));
  100   104     }