mirror of https://github.com/gorhill/uBlock.git
this fixes #1081
This commit is contained in:
parent
e34d500bf9
commit
00122f0b75
|
@ -1,5 +1,5 @@
|
||||||
531643477d70059fda3ea50a4c69dc56 assets/ublock/unbreak.txt
|
4d0e777a82576a2ec771742abb91925b assets/ublock/unbreak.txt
|
||||||
a78fc7352152d7f1f7513dfc34c8d8a2 assets/ublock/redirect-resources.txt
|
370d0ecdba45e4d2979861a02cd66815 assets/ublock/redirect-resources.txt
|
||||||
6c077d6d5b39e8a5a407966ad62c9c32 assets/ublock/privacy.txt
|
6c077d6d5b39e8a5a407966ad62c9c32 assets/ublock/privacy.txt
|
||||||
d2e6db232dafac3c813979ae8ce9d9a1 assets/ublock/filters.txt
|
d2e6db232dafac3c813979ae8ce9d9a1 assets/ublock/filters.txt
|
||||||
146704ad1c0393e342afdb416762c183 assets/ublock/badware.txt
|
146704ad1c0393e342afdb416762c183 assets/ublock/badware.txt
|
||||||
|
|
|
@ -128,6 +128,11 @@ www.google-analytics.com/ga.js application/javascript
|
||||||
return a;
|
return a;
|
||||||
};
|
};
|
||||||
//
|
//
|
||||||
|
var tracker = {
|
||||||
|
_initData: noopfn,
|
||||||
|
_trackPageview: noopfn
|
||||||
|
};
|
||||||
|
//
|
||||||
var Gat = function() {
|
var Gat = function() {
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
@ -135,7 +140,9 @@ www.google-analytics.com/ga.js application/javascript
|
||||||
Gat.prototype._createTracker = noopfn;
|
Gat.prototype._createTracker = noopfn;
|
||||||
Gat.prototype._forceSSL = noopfn;
|
Gat.prototype._forceSSL = noopfn;
|
||||||
Gat.prototype._getPlugin = noopfn;
|
Gat.prototype._getPlugin = noopfn;
|
||||||
Gat.prototype._getTracker = noopfn;
|
Gat.prototype._getTracker = function() {
|
||||||
|
return tracker;
|
||||||
|
};
|
||||||
Gat.prototype._getTrackerByName = function() {
|
Gat.prototype._getTrackerByName = function() {
|
||||||
return tracker;
|
return tracker;
|
||||||
};
|
};
|
||||||
|
|
|
@ -240,3 +240,6 @@ marketwatch.com#@#.advertisement
|
||||||
|
|
||||||
# https://github.com/gorhill/uBlock/issues/1082
|
# https://github.com/gorhill/uBlock/issues/1082
|
||||||
@@||widgets.outbrain.com/outbrain.js$script,domain=www.themarker.com
|
@@||widgets.outbrain.com/outbrain.js$script,domain=www.themarker.com
|
||||||
|
|
||||||
|
# https://github.com/gorhill/uBlock/issues/1081
|
||||||
|
@@||google-analytics.com/ga.js$domain=one.co.il
|
||||||
|
|
Loading…
Reference in New Issue