Release 4chan X v1.11.2.3.
This commit is contained in:
parent
dc415c8024
commit
b2cc435ace
@ -4,6 +4,10 @@ The links to individual versions below are to copies of the script with the upda
|
|||||||
|
|
||||||
### v1.11.2
|
### v1.11.2
|
||||||
|
|
||||||
|
**v1.11.2.3** *(2015-06-30)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.2.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.2.3/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
|
- Add 'webkit' CSS class to document when WebKit engine is detected.
|
||||||
|
- Various CSS-related bugfixes.
|
||||||
|
|
||||||
**v1.11.2.2** *(2015-06-30)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.2.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.2.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
**v1.11.2.2** *(2015-06-30)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.2.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.2.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||||
- Fix bug from v1.11.2.0 that broke `Use Recaptcha v1` when the original post form was hidden.
|
- Fix bug from v1.11.2.0 that broke `Use Recaptcha v1` when the original post form was hidden.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.2.2
|
// @version 1.11.2.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.11.2.2
|
// @version 1.11.2.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -411,7 +411,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.2.2',
|
VERSION: '1.11.2.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -871,6 +871,18 @@
|
|||||||
return video.mozHasAudio || !!video.webkitAudioDecodedByteCount;
|
return video.mozHasAudio || !!video.webkitAudioDecodedByteCount;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$.engine = (function() {
|
||||||
|
if (/Chrome\//.test(navigator.userAgent)) {
|
||||||
|
return 'blink';
|
||||||
|
}
|
||||||
|
if (/WebKit\//.test(navigator.userAgent)) {
|
||||||
|
return 'webkit';
|
||||||
|
}
|
||||||
|
if (/Gecko\/|Goanna/.test(navigator.userAgent)) {
|
||||||
|
return 'gecko';
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
$.item = function(key, val) {
|
$.item = function(key, val) {
|
||||||
var item;
|
var item;
|
||||||
item = {};
|
item = {};
|
||||||
@ -10573,7 +10585,7 @@
|
|||||||
}
|
}
|
||||||
if (file.scrollIntoView) {
|
if (file.scrollIntoView) {
|
||||||
delete file.scrollIntoView;
|
delete file.scrollIntoView;
|
||||||
imageBottom = Header.getBottomOf(file.fullImage) - 25;
|
imageBottom = Header.getBottomOf(file.fullImage);
|
||||||
if (imageBottom < 0) {
|
if (imageBottom < 0) {
|
||||||
window.scrollBy(0, Math.min(-imageBottom, Header.getTopOf(file.fullImage)));
|
window.scrollBy(0, Math.min(-imageBottom, Header.getTopOf(file.fullImage)));
|
||||||
}
|
}
|
||||||
@ -10782,7 +10794,7 @@
|
|||||||
return results;
|
return results;
|
||||||
})(), width = ref1[0], height = ref1[1];
|
})(), width = ref1[0], height = ref1[1];
|
||||||
ref2 = this.getBoundingClientRect(), left = ref2.left, right = ref2.right;
|
ref2 = this.getBoundingClientRect(), left = ref2.left, right = ref2.right;
|
||||||
padding = 16;
|
padding = 25;
|
||||||
maxWidth = Math.max(left, doc.clientWidth - right);
|
maxWidth = Math.max(left, doc.clientWidth - right);
|
||||||
maxHeight = doc.clientHeight - padding;
|
maxHeight = doc.clientHeight - padding;
|
||||||
scale = Math.min(1, maxWidth / width, maxHeight / height);
|
scale = Math.min(1, maxWidth / width, maxHeight / height);
|
||||||
@ -17039,7 +17051,9 @@
|
|||||||
}
|
}
|
||||||
$.addClass(doc, 'fourchan-x', 'seaweedchan');
|
$.addClass(doc, 'fourchan-x', 'seaweedchan');
|
||||||
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
||||||
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
if ($.engine) {
|
||||||
|
$.addClass(doc, $.engine);
|
||||||
|
}
|
||||||
$.addStyle(Main.css, 'fourchanx-css');
|
$.addStyle(Main.css, 'fourchanx-css');
|
||||||
keyboard = false;
|
keyboard = false;
|
||||||
$.on(d, 'mousedown', function() {
|
$.on(d, 'mousedown', function() {
|
||||||
@ -18105,7 +18119,7 @@
|
|||||||
" height: 10px;\n" +
|
" height: 10px;\n" +
|
||||||
" position: absolute;\n" +
|
" position: absolute;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
":root:not(.autohide) #scroll-marker {\n" +
|
"#header-bar:not(.autohide) #scroll-marker {\n" +
|
||||||
" pointer-events: none;\n" +
|
" pointer-events: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
"#header-bar #scroll-marker {\n" +
|
"#header-bar #scroll-marker {\n" +
|
||||||
@ -18485,6 +18499,10 @@
|
|||||||
" left: -1em;\n" +
|
" left: -1em;\n" +
|
||||||
" width: 0;\n" +
|
" width: 0;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"/* \`\`::-webkit-*'' selectors break selector lists on Firefox. */\n" +
|
||||||
|
"#index-search::-webkit-search-cancel-button {\n" +
|
||||||
|
" display: none;\n" +
|
||||||
|
"}\n" +
|
||||||
"#index-search:not([data-searching]) + #index-search-clear {\n" +
|
"#index-search:not([data-searching]) + #index-search-clear {\n" +
|
||||||
" display: none;\n" +
|
" display: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
@ -18828,6 +18846,9 @@
|
|||||||
":root.fit-height .full-image {\n" +
|
":root.fit-height .full-image {\n" +
|
||||||
" max-height: 100vh;\n" +
|
" max-height: 100vh;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
":root.fit-height.fixed .full-image {\n" +
|
||||||
|
" max-height: calc(100vh - 25px);\n" +
|
||||||
|
"}\n" +
|
||||||
":root.fit-width .full-image {\n" +
|
":root.fit-width .full-image {\n" +
|
||||||
" max-width: 100%;\n" +
|
" max-width: 100%;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.2.2
|
// @version 1.11.2.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -410,7 +410,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.2.2',
|
VERSION: '1.11.2.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -870,6 +870,18 @@
|
|||||||
return video.mozHasAudio || !!video.webkitAudioDecodedByteCount;
|
return video.mozHasAudio || !!video.webkitAudioDecodedByteCount;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$.engine = (function() {
|
||||||
|
if (/Chrome\//.test(navigator.userAgent)) {
|
||||||
|
return 'blink';
|
||||||
|
}
|
||||||
|
if (/WebKit\//.test(navigator.userAgent)) {
|
||||||
|
return 'webkit';
|
||||||
|
}
|
||||||
|
if (/Gecko\/|Goanna/.test(navigator.userAgent)) {
|
||||||
|
return 'gecko';
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
$.item = function(key, val) {
|
$.item = function(key, val) {
|
||||||
var item;
|
var item;
|
||||||
item = {};
|
item = {};
|
||||||
@ -10572,7 +10584,7 @@
|
|||||||
}
|
}
|
||||||
if (file.scrollIntoView) {
|
if (file.scrollIntoView) {
|
||||||
delete file.scrollIntoView;
|
delete file.scrollIntoView;
|
||||||
imageBottom = Header.getBottomOf(file.fullImage) - 25;
|
imageBottom = Header.getBottomOf(file.fullImage);
|
||||||
if (imageBottom < 0) {
|
if (imageBottom < 0) {
|
||||||
window.scrollBy(0, Math.min(-imageBottom, Header.getTopOf(file.fullImage)));
|
window.scrollBy(0, Math.min(-imageBottom, Header.getTopOf(file.fullImage)));
|
||||||
}
|
}
|
||||||
@ -10781,7 +10793,7 @@
|
|||||||
return results;
|
return results;
|
||||||
})(), width = ref1[0], height = ref1[1];
|
})(), width = ref1[0], height = ref1[1];
|
||||||
ref2 = this.getBoundingClientRect(), left = ref2.left, right = ref2.right;
|
ref2 = this.getBoundingClientRect(), left = ref2.left, right = ref2.right;
|
||||||
padding = 16;
|
padding = 25;
|
||||||
maxWidth = Math.max(left, doc.clientWidth - right);
|
maxWidth = Math.max(left, doc.clientWidth - right);
|
||||||
maxHeight = doc.clientHeight - padding;
|
maxHeight = doc.clientHeight - padding;
|
||||||
scale = Math.min(1, maxWidth / width, maxHeight / height);
|
scale = Math.min(1, maxWidth / width, maxHeight / height);
|
||||||
@ -17038,7 +17050,9 @@
|
|||||||
}
|
}
|
||||||
$.addClass(doc, 'fourchan-x', 'seaweedchan');
|
$.addClass(doc, 'fourchan-x', 'seaweedchan');
|
||||||
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
||||||
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
if ($.engine) {
|
||||||
|
$.addClass(doc, $.engine);
|
||||||
|
}
|
||||||
$.addStyle(Main.css, 'fourchanx-css');
|
$.addStyle(Main.css, 'fourchanx-css');
|
||||||
keyboard = false;
|
keyboard = false;
|
||||||
$.on(d, 'mousedown', function() {
|
$.on(d, 'mousedown', function() {
|
||||||
@ -18104,7 +18118,7 @@
|
|||||||
" height: 10px;\n" +
|
" height: 10px;\n" +
|
||||||
" position: absolute;\n" +
|
" position: absolute;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
":root:not(.autohide) #scroll-marker {\n" +
|
"#header-bar:not(.autohide) #scroll-marker {\n" +
|
||||||
" pointer-events: none;\n" +
|
" pointer-events: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
"#header-bar #scroll-marker {\n" +
|
"#header-bar #scroll-marker {\n" +
|
||||||
@ -18484,6 +18498,10 @@
|
|||||||
" left: -1em;\n" +
|
" left: -1em;\n" +
|
||||||
" width: 0;\n" +
|
" width: 0;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"/* \`\`::-webkit-*'' selectors break selector lists on Firefox. */\n" +
|
||||||
|
"#index-search::-webkit-search-cancel-button {\n" +
|
||||||
|
" display: none;\n" +
|
||||||
|
"}\n" +
|
||||||
"#index-search:not([data-searching]) + #index-search-clear {\n" +
|
"#index-search:not([data-searching]) + #index-search-clear {\n" +
|
||||||
" display: none;\n" +
|
" display: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
@ -18827,6 +18845,9 @@
|
|||||||
":root.fit-height .full-image {\n" +
|
":root.fit-height .full-image {\n" +
|
||||||
" max-height: 100vh;\n" +
|
" max-height: 100vh;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
":root.fit-height.fixed .full-image {\n" +
|
||||||
|
" max-height: calc(100vh - 25px);\n" +
|
||||||
|
"}\n" +
|
||||||
":root.fit-width .full-image {\n" +
|
":root.fit-width .full-image {\n" +
|
||||||
" max-width: 100%;\n" +
|
" max-width: 100%;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.2.2
|
// @version 1.11.2.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.11.2.2
|
// @version 1.11.2.3
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -411,7 +411,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.11.2.2',
|
VERSION: '1.11.2.3',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
@ -871,6 +871,18 @@
|
|||||||
return video.mozHasAudio || !!video.webkitAudioDecodedByteCount;
|
return video.mozHasAudio || !!video.webkitAudioDecodedByteCount;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$.engine = (function() {
|
||||||
|
if (/Chrome\//.test(navigator.userAgent)) {
|
||||||
|
return 'blink';
|
||||||
|
}
|
||||||
|
if (/WebKit\//.test(navigator.userAgent)) {
|
||||||
|
return 'webkit';
|
||||||
|
}
|
||||||
|
if (/Gecko\/|Goanna/.test(navigator.userAgent)) {
|
||||||
|
return 'gecko';
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
$.item = function(key, val) {
|
$.item = function(key, val) {
|
||||||
var item;
|
var item;
|
||||||
item = {};
|
item = {};
|
||||||
@ -10573,7 +10585,7 @@
|
|||||||
}
|
}
|
||||||
if (file.scrollIntoView) {
|
if (file.scrollIntoView) {
|
||||||
delete file.scrollIntoView;
|
delete file.scrollIntoView;
|
||||||
imageBottom = Header.getBottomOf(file.fullImage) - 25;
|
imageBottom = Header.getBottomOf(file.fullImage);
|
||||||
if (imageBottom < 0) {
|
if (imageBottom < 0) {
|
||||||
window.scrollBy(0, Math.min(-imageBottom, Header.getTopOf(file.fullImage)));
|
window.scrollBy(0, Math.min(-imageBottom, Header.getTopOf(file.fullImage)));
|
||||||
}
|
}
|
||||||
@ -10782,7 +10794,7 @@
|
|||||||
return results;
|
return results;
|
||||||
})(), width = ref1[0], height = ref1[1];
|
})(), width = ref1[0], height = ref1[1];
|
||||||
ref2 = this.getBoundingClientRect(), left = ref2.left, right = ref2.right;
|
ref2 = this.getBoundingClientRect(), left = ref2.left, right = ref2.right;
|
||||||
padding = 16;
|
padding = 25;
|
||||||
maxWidth = Math.max(left, doc.clientWidth - right);
|
maxWidth = Math.max(left, doc.clientWidth - right);
|
||||||
maxHeight = doc.clientHeight - padding;
|
maxHeight = doc.clientHeight - padding;
|
||||||
scale = Math.min(1, maxWidth / width, maxHeight / height);
|
scale = Math.min(1, maxWidth / width, maxHeight / height);
|
||||||
@ -17039,7 +17051,9 @@
|
|||||||
}
|
}
|
||||||
$.addClass(doc, 'fourchan-x', 'seaweedchan');
|
$.addClass(doc, 'fourchan-x', 'seaweedchan');
|
||||||
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
$.addClass(doc, g.VIEW === 'thread' ? 'thread-view' : g.VIEW);
|
||||||
$.addClass(doc, typeof chrome !== "undefined" && chrome !== null ? 'blink' : 'gecko');
|
if ($.engine) {
|
||||||
|
$.addClass(doc, $.engine);
|
||||||
|
}
|
||||||
$.addStyle(Main.css, 'fourchanx-css');
|
$.addStyle(Main.css, 'fourchanx-css');
|
||||||
keyboard = false;
|
keyboard = false;
|
||||||
$.on(d, 'mousedown', function() {
|
$.on(d, 'mousedown', function() {
|
||||||
@ -18105,7 +18119,7 @@
|
|||||||
" height: 10px;\n" +
|
" height: 10px;\n" +
|
||||||
" position: absolute;\n" +
|
" position: absolute;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
":root:not(.autohide) #scroll-marker {\n" +
|
"#header-bar:not(.autohide) #scroll-marker {\n" +
|
||||||
" pointer-events: none;\n" +
|
" pointer-events: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
"#header-bar #scroll-marker {\n" +
|
"#header-bar #scroll-marker {\n" +
|
||||||
@ -18485,6 +18499,10 @@
|
|||||||
" left: -1em;\n" +
|
" left: -1em;\n" +
|
||||||
" width: 0;\n" +
|
" width: 0;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
"/* \`\`::-webkit-*'' selectors break selector lists on Firefox. */\n" +
|
||||||
|
"#index-search::-webkit-search-cancel-button {\n" +
|
||||||
|
" display: none;\n" +
|
||||||
|
"}\n" +
|
||||||
"#index-search:not([data-searching]) + #index-search-clear {\n" +
|
"#index-search:not([data-searching]) + #index-search-clear {\n" +
|
||||||
" display: none;\n" +
|
" display: none;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
@ -18828,6 +18846,9 @@
|
|||||||
":root.fit-height .full-image {\n" +
|
":root.fit-height .full-image {\n" +
|
||||||
" max-height: 100vh;\n" +
|
" max-height: 100vh;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
":root.fit-height.fixed .full-image {\n" +
|
||||||
|
" max-height: calc(100vh - 25px);\n" +
|
||||||
|
"}\n" +
|
||||||
":root.fit-width .full-image {\n" +
|
":root.fit-width .full-image {\n" +
|
||||||
" max-width: 100%;\n" +
|
" max-width: 100%;\n" +
|
||||||
"}\n" +
|
"}\n" +
|
||||||
|
|||||||
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.11.2.2' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.11.2.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.11.2.2' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.11.2.3' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,8 +3,8 @@
|
|||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||||
"meta": {
|
"meta": {
|
||||||
"name": "4chan X",
|
"name": "4chan X",
|
||||||
"version": "1.11.2.2",
|
"version": "1.11.2.3",
|
||||||
"date": "2015-06-30T15:52:28.530Z",
|
"date": "2015-07-01T06:15:34.618Z",
|
||||||
"repo": "https://github.com/ccd0/4chan-x/",
|
"repo": "https://github.com/ccd0/4chan-x/",
|
||||||
"page": "https://github.com/ccd0/4chan-x",
|
"page": "https://github.com/ccd0/4chan-x",
|
||||||
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user