diff options
author | Umang Galaiya <umanghome@gmail.com> | 2020-12-21 16:15:51 +0530 |
---|---|---|
committer | Umang Galaiya <umanghome@gmail.com> | 2020-12-21 16:15:51 +0530 |
commit | 2f9fa61cd6b517cd858475a65114727e5c5b0d5a (patch) | |
tree | df57556c72c22e76f8fda5e2ea623c1e2dbf75dc | |
parent | 8f3c1cb07eeed946afe496da71d98212bb00e467 (diff) |
Add support for font request type
-rw-r--r-- | js/redirect.js | 1 | ||||
-rw-r--r-- | redirector.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/js/redirect.js b/js/redirect.js index acf46eb..81e459f 100644 --- a/js/redirect.js +++ b/js/redirect.js @@ -16,6 +16,7 @@ Redirect.requestTypes = { main_frame: "Main window (address bar)", sub_frame: "IFrames", stylesheet : "Stylesheets", + font: "Fonts", script : "Scripts", image : "Images", imageset: "Responsive Images in Firefox", diff --git a/redirector.html b/redirector.html index 7fe9cd2..58fc263 100644 --- a/redirector.html +++ b/redirector.html @@ -106,6 +106,7 @@ <label><input type="checkbox" checked="checked" value="main_frame"><span>Main window (address bar)</span></label> <label><input type="checkbox" value="sub_frame"><span>IFrames</span></label> <label><input type="checkbox" value="stylesheet"><span>Stylesheets</span></label> + <label><input type="checkbox" value="font"><span>Fonts</span></label> <label><input type="checkbox" value="script"><span>Scripts</span></label> <label><input type="checkbox" value="image"><span>Images</span></label> <label><input type="checkbox" value="imageset"><span>Responsive Images in Firefox</span></label> |