Release 4chan X v1.8.2.
This commit is contained in:
parent
56ee1fe173
commit
01a2d3a170
@ -1,3 +1,6 @@
|
|||||||
|
### v1.8.2
|
||||||
|
*2014-06-30*
|
||||||
|
|
||||||
**ccd0**
|
**ccd0**
|
||||||
- Introduce beta channel. New features and non-urgent bugfixes will be released to beta users for further testing before being moved to stable.
|
- Introduce beta channel. New features and non-urgent bugfixes will be released to beta users for further testing before being moved to stable.
|
||||||
- Begin making available a version of the script with the updater disabled.
|
- Begin making available a version of the script with the updater disabled.
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* 4chan X - Version 1.8.1 - 2014-06-19
|
* 4chan X - Version 1.8.2 - 2014-06-30
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||||
|
|||||||
BIN
builds/4chan-X-beta.crx
Normal file
BIN
builds/4chan-X-beta.crx
Normal file
Binary file not shown.
23
builds/4chan-X-beta.meta.js
Normal file
23
builds/4chan-X-beta.meta.js
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// ==UserScript==
|
||||||
|
// @name 4chan X
|
||||||
|
// @version 1.8.2
|
||||||
|
// @minGMVer 1.14
|
||||||
|
// @minFFVer 26
|
||||||
|
// @namespace 4chan-X
|
||||||
|
// @description Cross-browser userscript for maximum lurking on 4chan.
|
||||||
|
// @license MIT; https://github.com/ccd0/4chan-x/blob/master/LICENSE
|
||||||
|
// @match *://boards.4chan.org/*
|
||||||
|
// @match *://sys.4chan.org/*
|
||||||
|
// @match *://a.4cdn.org/*
|
||||||
|
// @match *://i.4cdn.org/*
|
||||||
|
// @grant GM_getValue
|
||||||
|
// @grant GM_setValue
|
||||||
|
// @grant GM_deleteValue
|
||||||
|
// @grant GM_listValues
|
||||||
|
// @grant GM_openInTab
|
||||||
|
// @grant GM_xmlhttpRequest
|
||||||
|
// @run-at document-start
|
||||||
|
// @updateURL https://ccd0.github.io/4chan-x/builds/4chan-X-beta.meta.js
|
||||||
|
// @downloadURL https://ccd0.github.io/4chan-x/builds/4chan-X-beta.user.js
|
||||||
|
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAACVBMVEUAAGcAAABmzDNZt9VtAAAAAXRSTlMAQObYZgAAAF5JREFUeNrtkTESABAQxPD/R6tsE2dUGYUtFJvLDKf93KevHJAjpBorAQWSBIKqFASC4G0pCAkm4GfaEvgYXl0T6HBaE97f0vmnfYHbZOMLZCx9ISdKWwjOWZSC8GYm4SUGwfYgqI4AAAAASUVORK5CYII=
|
||||||
|
// ==/UserScript==
|
||||||
File diff suppressed because one or more lines are too long
BIN
builds/4chan-X-noupdate.crx
Normal file
BIN
builds/4chan-X-noupdate.crx
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
BIN
builds/4chan-X.crx
Normal file
BIN
builds/4chan-X.crx
Normal file
Binary file not shown.
2
builds/4chan-X.meta.js
Executable file → Normal file
2
builds/4chan-X.meta.js
Executable file → Normal file
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.8.1
|
// @version 1.8.2
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
BIN
builds/crx.crx
BIN
builds/crx.crx
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 196 B |
Binary file not shown.
|
Before Width: | Height: | Size: 154 B |
Binary file not shown.
|
Before Width: | Height: | Size: 185 B |
@ -1,25 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "4chan X",
|
|
||||||
"version": "1.8.1",
|
|
||||||
"manifest_version": 2,
|
|
||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
|
||||||
"icons": {
|
|
||||||
"16": "icon16.png",
|
|
||||||
"48": "icon48.png",
|
|
||||||
"128": "icon128.png"
|
|
||||||
},
|
|
||||||
"content_scripts": [{
|
|
||||||
"js": ["script.js"],
|
|
||||||
"matches": ["*://boards.4chan.org/*","*://sys.4chan.org/*","*://a.4cdn.org/*","*://i.4cdn.org/*"],
|
|
||||||
"all_frames": true,
|
|
||||||
"run_at": "document_start"
|
|
||||||
}],
|
|
||||||
"homepage_url": "https://github.com/ccd0/4chan-x",
|
|
||||||
"update_url": "https://ccd0.github.io/4chan-x/builds/updates.xml",
|
|
||||||
"minimum_chrome_version": "31",
|
|
||||||
"permissions": [
|
|
||||||
"storage",
|
|
||||||
"http://*/",
|
|
||||||
"https://*/"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
7
builds/updates-beta.xml
Normal file
7
builds/updates-beta.xml
Normal file
@ -0,0 +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.8.2' />
|
||||||
|
</app>
|
||||||
|
</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/crx.crx' version='1.8.1' />
|
<updatecheck codebase='https://ccd0.github.io/4chan-x/builds/4chan-X.crx' version='1.8.2' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 196 B |
Binary file not shown.
|
Before Width: | Height: | Size: 154 B |
Binary file not shown.
|
Before Width: | Height: | Size: 185 B |
@ -1,24 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "4chan X",
|
|
||||||
"version": "1.8.1",
|
|
||||||
"manifest_version": 2,
|
|
||||||
"description": "Cross-browser userscript for maximum lurking on 4chan.",
|
|
||||||
"icons": {
|
|
||||||
"16": "icon16.png",
|
|
||||||
"48": "icon48.png",
|
|
||||||
"128": "icon128.png"
|
|
||||||
},
|
|
||||||
"content_scripts": [{
|
|
||||||
"js": ["script.js"],
|
|
||||||
"matches": ["*://boards.4chan.org/*","*://sys.4chan.org/*","*://a.4cdn.org/*","*://i.4cdn.org/*"],
|
|
||||||
"all_frames": true,
|
|
||||||
"run_at": "document_start"
|
|
||||||
}],
|
|
||||||
"homepage_url": "https://github.com/ccd0/4chan-x",
|
|
||||||
"minimum_chrome_version": "31",
|
|
||||||
"permissions": [
|
|
||||||
"storage",
|
|
||||||
"http://*/",
|
|
||||||
"https://*/"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "4chan-X",
|
"name": "4chan-X",
|
||||||
"version": "1.8.1",
|
"version": "1.8.2",
|
||||||
"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",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user