Index: background.js |
=================================================================== |
--- a/background.js |
+++ b/background.js |
@@ -346,7 +346,8 @@ |
var url = new URL(msg.urls[i], msg.baseURL); |
var filter = defaultMatcher.matchesAny( |
stringifyURL(url), typeMask, |
- documentHost, isThirdParty(url, documentHost) |
+ documentHost, isThirdParty(url, documentHost), |
+ getKey(sender.page, sender.frame) |
Sebastian Noack
2015/10/08 04:45:04
Mind getting the key above, outside of the loop?
Thomas Greiner
2015/10/08 12:39:36
Done.
|
); |
if (filter instanceof BlockingFilter) |