prettier fixes

This commit is contained in:
Tom Watson 2021-01-23 14:40:00 +01:00
parent ea26a03353
commit 97dfde8fa3
2 changed files with 9 additions and 14 deletions

View File

@ -1,10 +1,5 @@
const oldReddit = "https://old.reddit.com"; const oldReddit = "https://old.reddit.com";
const excludedPaths = [ const excludedPaths = ["/gallery", "/poll", "/rpan", "/settings", "/topics"];
"/gallery",
"/poll",
"/rpan",
"/settings",
"/topics"];
chrome.webRequest.onBeforeRequest.addListener( chrome.webRequest.onBeforeRequest.addListener(
function (details) { function (details) {
@ -34,8 +29,8 @@ chrome.webRequest.onBeforeRequest.addListener(
"image", "image",
"object", "object",
"xmlhttprequest", "xmlhttprequest",
"other" "other",
] ],
}, },
["blocking"] ["blocking"]
); );