mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
# Resources to be used as redirect destinations.
|
|
#
|
|
# - Each distinct resource entry is separated by an empty line.
|
|
# - The first line in a resource entry is: token mime-type[;encoding]
|
|
# - All following lines are the data. An empty line signals the end of the
|
|
# data.
|
|
#
|
|
# If the encoding is absent, the data will be converted to base64, and the
|
|
# encoding will be set to `;base64`.
|
|
|
|
|
|
hd-main.js application/javascript
|
|
var L = (function(){
|
|
var l = {};
|
|
var noopfn = function() {};
|
|
var props = ["pf", "ed", "Qe", "fd", "xh", "Uc", "ef", "zd", "Ad", "Qc", "Ri", "Wc", "Vc", "Xc", "Wg", "rd", "qd", "sd", "Pe", "Id", "Hd", "Jd", "fg", "Fd", "Ed", "Gd", "ek", "Cd", "Bd", "Dd", "Nj", "Sc", "Rc", "Tc", "wg", "xd", "wd", "yd", "fh", "ld", "md", "nd", "Re", "cd", "Pc", "ke", "Yc", "Xg", "jd", "kd", "oh", "ad", "bd", "mi", "gd", "hd", "ae", "dd", "fk", "ij", "ud", "td", "vd", "ig", "od", "pd", "Yd", "$j", "Oc", "bf"];
|
|
for (var i = 0; i < props.length; i++) {
|
|
l[props[i]] = noopfn;
|
|
}
|
|
return l;
|
|
})();
|
|
|
|
|
|
# http://probablyprogramming.com/2009/03/15/the-tiniest-gif-ever
|
|
handtinytrans.gif image/gif;base64
|
|
R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
|
|
|
|
|
|
# To neutralize GA scripts. The goal is to provide the minimal API
|
|
# expected by clients of these scripts so that the end users are able
|
|
# to wholly block GA while minimizing risks of page breakage.
|
|
# Test cases (need way more):
|
|
# - https://github.com/chrisaljoudi/uBlock/issues/119
|
|
|
|
#www.google-analytics.com/ga.js application/javascript
|
|
#(function() {
|
|
# var noopfn = function() {};
|
|
# //
|
|
# var gaq = function() {};
|
|
# gaq.push = function(a) {
|
|
# if ( typeof a === 'function' ) {
|
|
# a();
|
|
# }
|
|
# };
|
|
# //
|
|
# var tracker = function() {};
|
|
# tracker._getLinkerUrl = function(a) { return a; };
|
|
# //
|
|
# var gat = function() {};
|
|
# gat._getTrackerByName = function() { return tracker; };
|
|
# window._gat = gat;
|
|
# //
|
|
# (function() {
|
|
# var aa = window._gaq || [];
|
|
# if ( Array.isArray(aa) ) {
|
|
# while ( aa[0] ) {
|
|
# gaq.push(aa.shift());
|
|
# }
|
|
# }
|
|
# })();
|
|
# window._gaq = gaq;
|
|
#})();
|