Release 4chan X v1.11.24.1.
This commit is contained in:
parent
6b359c9b8c
commit
2e38d6dc77
@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
|
||||
|
||||
### v1.11.24
|
||||
|
||||
**v1.11.24.1** *(2016-02-05)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.24.1/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.24.1/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Disrupt loading of ads from malicious/irresponsible providers.
|
||||
|
||||
**v1.11.24.0** *(2016-01-31)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.24.0/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.24.0/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
- Based on v1.11.23.2.
|
||||
- Bug fixes.
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.24.0
|
||||
// @version 1.11.24.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -10,16 +10,18 @@
|
||||
// @include https://boards.4chan.org/*
|
||||
// @include http://sys.4chan.org/*
|
||||
// @include https://sys.4chan.org/*
|
||||
// @include http://www.4chan.org/*
|
||||
// @include https://www.4chan.org/*
|
||||
// @include http://i.4cdn.org/*
|
||||
// @include https://i.4cdn.org/*
|
||||
// @include http://www.4chan.org/banned
|
||||
// @include https://www.4chan.org/banned
|
||||
// @include http://www.4chan.org/feedback
|
||||
// @include https://www.4chan.org/feedback
|
||||
// @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include http://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @exclude http://www.4chan.org/pass
|
||||
// @exclude https://www.4chan.org/pass
|
||||
// @exclude http://www.4chan.org/pass?*
|
||||
// @exclude https://www.4chan.org/pass?*
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
// @grant GM_deleteValue
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.11.24.0
|
||||
// @version 1.11.24.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -11,16 +11,18 @@
|
||||
// @include https://boards.4chan.org/*
|
||||
// @include http://sys.4chan.org/*
|
||||
// @include https://sys.4chan.org/*
|
||||
// @include http://www.4chan.org/*
|
||||
// @include https://www.4chan.org/*
|
||||
// @include http://i.4cdn.org/*
|
||||
// @include https://i.4cdn.org/*
|
||||
// @include http://www.4chan.org/banned
|
||||
// @include https://www.4chan.org/banned
|
||||
// @include http://www.4chan.org/feedback
|
||||
// @include https://www.4chan.org/feedback
|
||||
// @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include http://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @exclude http://www.4chan.org/pass
|
||||
// @exclude https://www.4chan.org/pass
|
||||
// @exclude http://www.4chan.org/pass?*
|
||||
// @exclude https://www.4chan.org/pass?*
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
// @grant GM_deleteValue
|
||||
@ -434,7 +436,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.24.0',
|
||||
VERSION: '1.11.24.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -949,7 +951,11 @@
|
||||
};
|
||||
|
||||
$.global = function(fn) {
|
||||
return $.globalEval("(" + fn + ")();");
|
||||
if (doc) {
|
||||
return $.globalEval("(" + fn + ")();");
|
||||
} else {
|
||||
return fn();
|
||||
}
|
||||
};
|
||||
|
||||
$.bytesToString = function(size) {
|
||||
@ -17754,6 +17760,27 @@
|
||||
});
|
||||
return;
|
||||
}
|
||||
$.global(function() {
|
||||
var k, len1, nuke, prop, ref;
|
||||
nuke = function(obj, prop) {
|
||||
try {
|
||||
return Object.defineProperty(obj, prop, {
|
||||
configurable: false,
|
||||
get: function() {
|
||||
throw new Error();
|
||||
},
|
||||
set: function() {
|
||||
throw new Error();
|
||||
}
|
||||
});
|
||||
} catch (_error) {}
|
||||
};
|
||||
ref = ['atOptions', 'adsterra_key', 'EpmadsConfig', 'epmads_key', 'EpomConfig', 'epom_key', 'exoDocumentProtocol'];
|
||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||
prop = ref[k];
|
||||
nuke(window, prop);
|
||||
}
|
||||
});
|
||||
$.on(d, '4chanXInitFinished', function() {
|
||||
if (Main.expectInitFinished) {
|
||||
return delete Main.expectInitFinished;
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.24.0
|
||||
// @version 1.11.24.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -11,16 +11,18 @@
|
||||
// @include https://boards.4chan.org/*
|
||||
// @include http://sys.4chan.org/*
|
||||
// @include https://sys.4chan.org/*
|
||||
// @include http://www.4chan.org/*
|
||||
// @include https://www.4chan.org/*
|
||||
// @include http://i.4cdn.org/*
|
||||
// @include https://i.4cdn.org/*
|
||||
// @include http://www.4chan.org/banned
|
||||
// @include https://www.4chan.org/banned
|
||||
// @include http://www.4chan.org/feedback
|
||||
// @include https://www.4chan.org/feedback
|
||||
// @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include http://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @exclude http://www.4chan.org/pass
|
||||
// @exclude https://www.4chan.org/pass
|
||||
// @exclude http://www.4chan.org/pass?*
|
||||
// @exclude https://www.4chan.org/pass?*
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
// @grant GM_deleteValue
|
||||
@ -434,7 +436,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.24.0',
|
||||
VERSION: '1.11.24.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -949,7 +951,11 @@
|
||||
};
|
||||
|
||||
$.global = function(fn) {
|
||||
return $.globalEval("(" + fn + ")();");
|
||||
if (doc) {
|
||||
return $.globalEval("(" + fn + ")();");
|
||||
} else {
|
||||
return fn();
|
||||
}
|
||||
};
|
||||
|
||||
$.bytesToString = function(size) {
|
||||
@ -17754,6 +17760,27 @@
|
||||
});
|
||||
return;
|
||||
}
|
||||
$.global(function() {
|
||||
var k, len1, nuke, prop, ref;
|
||||
nuke = function(obj, prop) {
|
||||
try {
|
||||
return Object.defineProperty(obj, prop, {
|
||||
configurable: false,
|
||||
get: function() {
|
||||
throw new Error();
|
||||
},
|
||||
set: function() {
|
||||
throw new Error();
|
||||
}
|
||||
});
|
||||
} catch (_error) {}
|
||||
};
|
||||
ref = ['atOptions', 'adsterra_key', 'EpmadsConfig', 'epmads_key', 'EpomConfig', 'epom_key', 'exoDocumentProtocol'];
|
||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||
prop = ref[k];
|
||||
nuke(window, prop);
|
||||
}
|
||||
});
|
||||
$.on(d, '4chanXInitFinished', function() {
|
||||
if (Main.expectInitFinished) {
|
||||
return delete Main.expectInitFinished;
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.24.0
|
||||
// @version 1.11.24.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -10,16 +10,18 @@
|
||||
// @include https://boards.4chan.org/*
|
||||
// @include http://sys.4chan.org/*
|
||||
// @include https://sys.4chan.org/*
|
||||
// @include http://www.4chan.org/*
|
||||
// @include https://www.4chan.org/*
|
||||
// @include http://i.4cdn.org/*
|
||||
// @include https://i.4cdn.org/*
|
||||
// @include http://www.4chan.org/banned
|
||||
// @include https://www.4chan.org/banned
|
||||
// @include http://www.4chan.org/feedback
|
||||
// @include https://www.4chan.org/feedback
|
||||
// @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include http://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @exclude http://www.4chan.org/pass
|
||||
// @exclude https://www.4chan.org/pass
|
||||
// @exclude http://www.4chan.org/pass?*
|
||||
// @exclude https://www.4chan.org/pass?*
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
// @grant GM_deleteValue
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.11.24.0
|
||||
// @version 1.11.24.1
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -11,16 +11,18 @@
|
||||
// @include https://boards.4chan.org/*
|
||||
// @include http://sys.4chan.org/*
|
||||
// @include https://sys.4chan.org/*
|
||||
// @include http://www.4chan.org/*
|
||||
// @include https://www.4chan.org/*
|
||||
// @include http://i.4cdn.org/*
|
||||
// @include https://i.4cdn.org/*
|
||||
// @include http://www.4chan.org/banned
|
||||
// @include https://www.4chan.org/banned
|
||||
// @include http://www.4chan.org/feedback
|
||||
// @include https://www.4chan.org/feedback
|
||||
// @include https://www.google.com/recaptcha/api2/anchor?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api2/frame?*&k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include http://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @include https://www.google.com/recaptcha/api/fallback?k=6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc*
|
||||
// @exclude http://www.4chan.org/pass
|
||||
// @exclude https://www.4chan.org/pass
|
||||
// @exclude http://www.4chan.org/pass?*
|
||||
// @exclude https://www.4chan.org/pass?*
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
// @grant GM_deleteValue
|
||||
@ -434,7 +436,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.11.24.0',
|
||||
VERSION: '1.11.24.1',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -949,7 +951,11 @@
|
||||
};
|
||||
|
||||
$.global = function(fn) {
|
||||
return $.globalEval("(" + fn + ")();");
|
||||
if (doc) {
|
||||
return $.globalEval("(" + fn + ")();");
|
||||
} else {
|
||||
return fn();
|
||||
}
|
||||
};
|
||||
|
||||
$.bytesToString = function(size) {
|
||||
@ -17754,6 +17760,27 @@
|
||||
});
|
||||
return;
|
||||
}
|
||||
$.global(function() {
|
||||
var k, len1, nuke, prop, ref;
|
||||
nuke = function(obj, prop) {
|
||||
try {
|
||||
return Object.defineProperty(obj, prop, {
|
||||
configurable: false,
|
||||
get: function() {
|
||||
throw new Error();
|
||||
},
|
||||
set: function() {
|
||||
throw new Error();
|
||||
}
|
||||
});
|
||||
} catch (_error) {}
|
||||
};
|
||||
ref = ['atOptions', 'adsterra_key', 'EpmadsConfig', 'epmads_key', 'EpomConfig', 'epom_key', 'exoDocumentProtocol'];
|
||||
for (k = 0, len1 = ref.length; k < len1; k++) {
|
||||
prop = ref[k];
|
||||
nuke(window, prop);
|
||||
}
|
||||
});
|
||||
$.on(d, '4chanXInitFinished', function() {
|
||||
if (Main.expectInitFinished) {
|
||||
return delete Main.expectInitFinished;
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.24.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.11.24.1' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.24.0' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.11.24.1' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.11.24.0",
|
||||
"date": "2016-02-01T05:44:50.088Z"
|
||||
"version": "1.11.24.1",
|
||||
"date": "2016-02-06T02:48:47.323Z"
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user