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
d1b60e4d88a864a714c31db7bc2f745af059d897
parent
57999942aa4a229190da0cc1645fea14481aac60
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-07-30 21:17
mv files to src

Diffstat

M Makefile 2 +-
M manifest.json 4 ++--
R bg.js -> src/bg.js 0
R popup.css -> src/popup.css 0
R popup.html -> src/popup.html 0
R popup.js -> src/popup.js 0
R shared.js -> src/shared.js 0

7 files changed, 3 insertions, 3 deletions


diff --git a/Makefile b/Makefile

@@ -1,4 +1,4 @@
    1    -1 bundle.zip: manifest.json icon-128.png bg.js popup.html popup.js popup.css
   -1     1 bundle.zip: manifest.json icon-128.png src/*
    2     2 	zip $@ $^
    3     3 
    4     4 icon-128.png: icon.svg

diff --git a/manifest.json b/manifest.json

@@ -5,7 +5,7 @@
    5     5   "version": "0.0.0",
    6     6   "browser_action": {
    7     7     "default_title": "xiMatrix",
    8    -1     "default_popup": "popup.html",
   -1     8     "default_popup": "src/popup.html",
    9     9     "default_icon": {
   10    10       "128": "icon-128.png"
   11    11     }
@@ -14,7 +14,7 @@
   14    14     "128": "icon-128.png"
   15    15   },
   16    16   "background": {
   17    -1     "scripts": ["shared.js", "bg.js"]
   -1    17     "scripts": ["src/shared.js", "src/bg.js"]
   18    18   },
   19    19   "permissions": [
   20    20     "storage",

diff --git a/bg.js b/src/bg.js

diff --git a/popup.css b/src/popup.css

diff --git a/popup.html b/src/popup.html

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

diff --git a/shared.js b/src/shared.js