Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/devtools.js

Issue 29760707: Issue 6622 - Implement $rewrite filter option (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Created April 24, 2018, 8:33 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/devtools.js
===================================================================
--- a/lib/devtools.js
+++ b/lib/devtools.js
@@ -24,17 +24,17 @@
require("../adblockpluscore/lib/subscriptionClasses");
const {FilterStorage} = require("../adblockpluscore/lib/filterStorage");
const {defaultMatcher} = require("../adblockpluscore/lib/matcher");
const {FilterNotifier} = require("../adblockpluscore/lib/filterNotifier");
const {extractHostFromFrame} = require("./url");
const {port} = require("./messaging");
const nonRequestTypes = ["DOCUMENT", "ELEMHIDE",
- "GENERICBLOCK", "GENERICHIDE", "CSP"];
+ "GENERICBLOCK", "GENERICHIDE", "CSP", "REWRITE"];
let panels = new Map();
function isActivePanel(panel)
{
return panel && !panel.reload && !panel.reloading;
}

Powered by Google App Engine
This is Rietveld