Release 4chan X v1.12.3.10.
This commit is contained in:
parent
25d4d764d8
commit
687decdcd1
@ -2,6 +2,9 @@
|
||||
|
||||
### v1.12.3
|
||||
|
||||
**v1.12.3.10** *(2016-10-27)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.10/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.10/builds/4chan-X-noupdate.crx)]
|
||||
- Update due to 4chan's ad changes.
|
||||
|
||||
**v1.12.3.9** *(2016-10-18)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.9/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.12.3.9/builds/4chan-X-noupdate.crx)]
|
||||
- Add basic support for is.4chan.org domain.
|
||||
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.12.3.9
|
||||
// @version 1.12.3.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.12.3.9
|
||||
// @version 1.12.3.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -147,7 +147,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.12.3.9',
|
||||
VERSION: '1.12.3.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -1303,12 +1303,13 @@ body > div[style*=\" top: -10000px;\"] {\n\
|
||||
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
||||
height: auto;\n\
|
||||
}\n\
|
||||
:root:not(.ads-loaded) .adg-rects,\n\
|
||||
:root:not(.ads-loaded) .ad-plea,\n\
|
||||
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
||||
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
||||
display: none;\n\
|
||||
}\n\
|
||||
hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {\n\
|
||||
div.center[style] {\n\
|
||||
display: none !important;\n\
|
||||
}\n\
|
||||
/* Anti-autoplay */\n\
|
||||
@ -9959,8 +9960,8 @@ Settings = (function() {
|
||||
}
|
||||
},
|
||||
ads: function(cb) {
|
||||
return $.onExists(doc, '.ad-cnt', function(ad) {
|
||||
return $.onExists(ad, 'img', function() {
|
||||
return $.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||
return $.onExists(ad, 'img, iframe', function() {
|
||||
var url;
|
||||
url = Redirect.to('thread', {
|
||||
boardID: 'qa',
|
||||
@ -22721,8 +22722,8 @@ Main = (function() {
|
||||
if ($.engine) {
|
||||
$.addClass(doc, "ua-" + $.engine);
|
||||
}
|
||||
$.onExists(doc, '.ad-cnt', function(ad) {
|
||||
return $.onExists(ad, 'img', function() {
|
||||
$.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||
return $.onExists(ad, 'img, iframe', function() {
|
||||
return $.addClass(doc, 'ads-loaded');
|
||||
});
|
||||
});
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.12.3.9
|
||||
// @version 1.12.3.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -147,7 +147,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.12.3.9',
|
||||
VERSION: '1.12.3.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -1303,12 +1303,13 @@ body > div[style*=\" top: -10000px;\"] {\n\
|
||||
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
||||
height: auto;\n\
|
||||
}\n\
|
||||
:root:not(.ads-loaded) .adg-rects,\n\
|
||||
:root:not(.ads-loaded) .ad-plea,\n\
|
||||
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
||||
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
||||
display: none;\n\
|
||||
}\n\
|
||||
hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {\n\
|
||||
div.center[style] {\n\
|
||||
display: none !important;\n\
|
||||
}\n\
|
||||
/* Anti-autoplay */\n\
|
||||
@ -9959,8 +9960,8 @@ Settings = (function() {
|
||||
}
|
||||
},
|
||||
ads: function(cb) {
|
||||
return $.onExists(doc, '.ad-cnt', function(ad) {
|
||||
return $.onExists(ad, 'img', function() {
|
||||
return $.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||
return $.onExists(ad, 'img, iframe', function() {
|
||||
var url;
|
||||
url = Redirect.to('thread', {
|
||||
boardID: 'qa',
|
||||
@ -22721,8 +22722,8 @@ Main = (function() {
|
||||
if ($.engine) {
|
||||
$.addClass(doc, "ua-" + $.engine);
|
||||
}
|
||||
$.onExists(doc, '.ad-cnt', function(ad) {
|
||||
return $.onExists(ad, 'img', function() {
|
||||
$.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||
return $.onExists(ad, 'img, iframe', function() {
|
||||
return $.addClass(doc, 'ads-loaded');
|
||||
});
|
||||
});
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.12.3.9
|
||||
// @version 1.12.3.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.12.3.9
|
||||
// @version 1.12.3.10
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -147,7 +147,7 @@ docSet = function() {
|
||||
};
|
||||
|
||||
g = {
|
||||
VERSION: '1.12.3.9',
|
||||
VERSION: '1.12.3.10',
|
||||
NAMESPACE: '4chan X.',
|
||||
boards: {}
|
||||
};
|
||||
@ -1303,12 +1303,13 @@ body > div[style*=\" top: -10000px;\"] {\n\
|
||||
:root:not(.ads-loaded) .ad-cnt > * {\n\
|
||||
height: auto;\n\
|
||||
}\n\
|
||||
:root:not(.ads-loaded) .adg-rects,\n\
|
||||
:root:not(.ads-loaded) .ad-plea,\n\
|
||||
:root:not(.ads-loaded) hr.abovePostForm,\n\
|
||||
:root:not(.ads-loaded) .ad-plea-bottom + hr {\n\
|
||||
display: none;\n\
|
||||
}\n\
|
||||
hr + div.center:not(.ad-cnt):not(.topad):not(.middlead):not(.bottomad) {\n\
|
||||
div.center[style] {\n\
|
||||
display: none !important;\n\
|
||||
}\n\
|
||||
/* Anti-autoplay */\n\
|
||||
@ -9959,8 +9960,8 @@ Settings = (function() {
|
||||
}
|
||||
},
|
||||
ads: function(cb) {
|
||||
return $.onExists(doc, '.ad-cnt', function(ad) {
|
||||
return $.onExists(ad, 'img', function() {
|
||||
return $.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||
return $.onExists(ad, 'img, iframe', function() {
|
||||
var url;
|
||||
url = Redirect.to('thread', {
|
||||
boardID: 'qa',
|
||||
@ -22721,8 +22722,8 @@ Main = (function() {
|
||||
if ($.engine) {
|
||||
$.addClass(doc, "ua-" + $.engine);
|
||||
}
|
||||
$.onExists(doc, '.ad-cnt', function(ad) {
|
||||
return $.onExists(ad, 'img', function() {
|
||||
$.onExists(doc, '.ad-cnt, .adg-rects', function(ad) {
|
||||
return $.onExists(ad, 'img, iframe', function() {
|
||||
return $.addClass(doc, 'ads-loaded');
|
||||
});
|
||||
});
|
||||
|
||||
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.12.3.9' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.12.3.10' />
|
||||
</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.12.3.9' />
|
||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.12.3.10' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
{
|
||||
"version": "1.12.3.9",
|
||||
"date": "2016-10-18T19:37:23.603Z"
|
||||
"version": "1.12.3.10",
|
||||
"date": "2016-10-27T17:31:18.611Z"
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user