Add more exceptions
This commit is contained in:
parent
90181d4125
commit
9dc68e9029
|
@ -1,6 +1,16 @@
|
||||||
const oldReddit = "https://old.reddit.com";
|
const oldReddit = "https://old.reddit.com";
|
||||||
const excludedSubdomains = ["blog.reddit.com", "oauth.reddit.com", "out.reddit.com"];
|
const excludedSubdomains = [
|
||||||
const excludedPaths = ["/poll", "/gallery", "/rpan", "/settings"];
|
"blog.reddit.com",
|
||||||
|
"mod.reddit.com",
|
||||||
|
"oauth.reddit.com",
|
||||||
|
"out.reddit.com"];
|
||||||
|
const excludedPaths = [
|
||||||
|
"/chat",
|
||||||
|
"/gallery",
|
||||||
|
"/poll",
|
||||||
|
"/rpan",
|
||||||
|
"/settings",
|
||||||
|
"/topics"];
|
||||||
|
|
||||||
chrome.webRequest.onBeforeRequest.addListener(
|
chrome.webRequest.onBeforeRequest.addListener(
|
||||||
function(details) {
|
function(details) {
|
||||||
|
|
Loading…
Reference in New Issue