Release 4chan X v1.9.22.3.
This commit is contained in:
parent
d79ffca82d
commit
36c5f87994
@ -3,6 +3,11 @@ The attributions below are for work that has been incorporated into the script a
|
||||
The links to individual versions below are to copies of the script with the update URL removed. If you want automatic updates, install the script from the links on the [main page](https://github.com/ccd0/4chan-x).
|
||||
|
||||
<!-- v1.9.22.x -->
|
||||
### v1.9.22.3
|
||||
*2015-02-01* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.22.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.22.3/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
|
||||
- Add option `Volume in New Tab` (on by default) to apply 4chan X mute/volume settings to videos opened in a new tab.
|
||||
|
||||
### v1.9.22.2
|
||||
*2015-02-01* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.22.2/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.9.22.2/builds/4chan-X-noupdate.crx "Chromium version")]
|
||||
|
||||
|
||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* 4chan X - Version 1.9.22.2
|
||||
* 4chan X - Version 1.9.22.3
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.9.22.2
|
||||
// @version 1.9.22.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X beta
|
||||
// @version 1.9.22.2
|
||||
// @version 1.9.22.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -25,7 +25,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.9.22.2
|
||||
* 4chan X - Version 1.9.22.3
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -199,7 +199,8 @@
|
||||
'Show Controls': [true, 'Show controls on videos expanded inline.'],
|
||||
'Click Passthrough': [false, 'Clicks on videos trigger your browser\'s default behavior. Videos can be contracted with button / dragging to the left.', 1],
|
||||
'Allow Sound': [true, 'Open videos with the sound unmuted.'],
|
||||
'Loop in New Tab': [true, 'Loop videos opened in their own tabs.']
|
||||
'Loop in New Tab': [true, 'Loop videos opened in their own tabs.'],
|
||||
'Volume in New Tab': [true, 'Apply 4chan X mute and volume settings to videos opened in their own tabs.']
|
||||
},
|
||||
'Menu': {
|
||||
'Menu': [true, 'Add a drop-down menu to posts.'],
|
||||
@ -400,7 +401,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.9.22.2',
|
||||
VERSION: '1.9.22.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
NAME: '4chan X',
|
||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||
@ -15693,11 +15694,16 @@
|
||||
filename: pathname[pathname.length - 1]
|
||||
});
|
||||
return Redirect.navigate(URL);
|
||||
} else if (Conf['Loop in New Tab'] && (video = $('video'))) {
|
||||
video.loop = true;
|
||||
video.controls = false;
|
||||
video.play();
|
||||
return ImageCommon.addControls(video);
|
||||
} else if (video = $('video')) {
|
||||
if (Conf['Volume in New Tab']) {
|
||||
Volume.setup(video);
|
||||
}
|
||||
if (Conf['Loop in New Tab']) {
|
||||
video.loop = true;
|
||||
video.controls = false;
|
||||
video.play();
|
||||
return ImageCommon.addControls(video);
|
||||
}
|
||||
}
|
||||
});
|
||||
return;
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.9.22.2
|
||||
// @version 1.9.22.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -24,7 +24,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.9.22.2
|
||||
* 4chan X - Version 1.9.22.3
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -198,7 +198,8 @@
|
||||
'Show Controls': [true, 'Show controls on videos expanded inline.'],
|
||||
'Click Passthrough': [false, 'Clicks on videos trigger your browser\'s default behavior. Videos can be contracted with button / dragging to the left.', 1],
|
||||
'Allow Sound': [true, 'Open videos with the sound unmuted.'],
|
||||
'Loop in New Tab': [true, 'Loop videos opened in their own tabs.']
|
||||
'Loop in New Tab': [true, 'Loop videos opened in their own tabs.'],
|
||||
'Volume in New Tab': [true, 'Apply 4chan X mute and volume settings to videos opened in their own tabs.']
|
||||
},
|
||||
'Menu': {
|
||||
'Menu': [true, 'Add a drop-down menu to posts.'],
|
||||
@ -399,7 +400,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.9.22.2',
|
||||
VERSION: '1.9.22.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
NAME: '4chan X',
|
||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||
@ -15692,11 +15693,16 @@
|
||||
filename: pathname[pathname.length - 1]
|
||||
});
|
||||
return Redirect.navigate(URL);
|
||||
} else if (Conf['Loop in New Tab'] && (video = $('video'))) {
|
||||
video.loop = true;
|
||||
video.controls = false;
|
||||
video.play();
|
||||
return ImageCommon.addControls(video);
|
||||
} else if (video = $('video')) {
|
||||
if (Conf['Volume in New Tab']) {
|
||||
Volume.setup(video);
|
||||
}
|
||||
if (Conf['Loop in New Tab']) {
|
||||
video.loop = true;
|
||||
video.controls = false;
|
||||
video.play();
|
||||
return ImageCommon.addControls(video);
|
||||
}
|
||||
}
|
||||
});
|
||||
return;
|
||||
|
||||
Binary file not shown.
@ -1,6 +1,6 @@
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.9.22.2
|
||||
// @version 1.9.22.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Generated by CoffeeScript
|
||||
// ==UserScript==
|
||||
// @name 4chan X
|
||||
// @version 1.9.22.2
|
||||
// @version 1.9.22.3
|
||||
// @minGMVer 1.14
|
||||
// @minFFVer 26
|
||||
// @namespace 4chan-X
|
||||
@ -25,7 +25,7 @@
|
||||
// ==/UserScript==
|
||||
|
||||
/*
|
||||
* 4chan X - Version 1.9.22.2
|
||||
* 4chan X - Version 1.9.22.3
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||
@ -199,7 +199,8 @@
|
||||
'Show Controls': [true, 'Show controls on videos expanded inline.'],
|
||||
'Click Passthrough': [false, 'Clicks on videos trigger your browser\'s default behavior. Videos can be contracted with button / dragging to the left.', 1],
|
||||
'Allow Sound': [true, 'Open videos with the sound unmuted.'],
|
||||
'Loop in New Tab': [true, 'Loop videos opened in their own tabs.']
|
||||
'Loop in New Tab': [true, 'Loop videos opened in their own tabs.'],
|
||||
'Volume in New Tab': [true, 'Apply 4chan X mute and volume settings to videos opened in their own tabs.']
|
||||
},
|
||||
'Menu': {
|
||||
'Menu': [true, 'Add a drop-down menu to posts.'],
|
||||
@ -400,7 +401,7 @@
|
||||
doc = d.documentElement;
|
||||
|
||||
g = {
|
||||
VERSION: '1.9.22.2',
|
||||
VERSION: '1.9.22.3',
|
||||
NAMESPACE: '4chan X.',
|
||||
NAME: '4chan X',
|
||||
FAQ: 'https://github.com/ccd0/4chan-x/wiki/Frequently-Asked-Questions',
|
||||
@ -15693,11 +15694,16 @@
|
||||
filename: pathname[pathname.length - 1]
|
||||
});
|
||||
return Redirect.navigate(URL);
|
||||
} else if (Conf['Loop in New Tab'] && (video = $('video'))) {
|
||||
video.loop = true;
|
||||
video.controls = false;
|
||||
video.play();
|
||||
return ImageCommon.addControls(video);
|
||||
} else if (video = $('video')) {
|
||||
if (Conf['Volume in New Tab']) {
|
||||
Volume.setup(video);
|
||||
}
|
||||
if (Conf['Loop in New Tab']) {
|
||||
video.loop = true;
|
||||
video.controls = false;
|
||||
video.play();
|
||||
return ImageCommon.addControls(video);
|
||||
}
|
||||
}
|
||||
});
|
||||
return;
|
||||
|
||||
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://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.9.22.2' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X-beta.crx' version='1.9.22.3' />
|
||||
</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://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.9.22.2' />
|
||||
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.9.22.3' />
|
||||
</app>
|
||||
</gupdate>
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
||||
"meta": {
|
||||
"name": "4chan X",
|
||||
"version": "1.9.22.2",
|
||||
"version": "1.9.22.3",
|
||||
"repo": "https://github.com/ccd0/4chan-x/",
|
||||
"page": "https://github.com/ccd0/4chan-x",
|
||||
"downloads": "https://ccd0.github.io/4chan-x/builds/",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user