Expose builds/ because botnets.

This commit is contained in:
Zixaphir 2013-04-14 01:03:07 -07:00
parent 1276c542f2
commit 739220ed11
11 changed files with 31646 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,4 +1,3 @@
builds/
node_modules/
tmp/
4chan_x.user.js

View File

@ -16,6 +16,8 @@ module.exports = (grunt) ->
'lib/ui.coffee'
'lib/$.coffee'
'lib/polyfill.coffee'
'src/appchan.coffee'
'src/settings.coffee'
'src/features.coffee'
'src/qr.coffee'
'src/report.coffee'
@ -51,8 +53,8 @@ module.exports = (grunt) ->
process:
data: pkg
files:
'<%= pkg.name %>.meta.js': 'src/metadata.js'
'<%= pkg.name %>.user.js': [
'builds/<%= pkg.name %>.meta.js': 'src/metadata.js'
'builds/<%= pkg.name %>.user.js': [
'src/metadata.js'
'src/banner.js'
'tmp/script.js'

9122
builds/4chan-X.js Normal file

File diff suppressed because one or more lines are too long

13438
builds/appchan-x.js Normal file

File diff suppressed because one or more lines are too long

BIN
builds/crx/icon128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

BIN
builds/crx/icon16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

BIN
builds/crx/icon48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 B

21
builds/crx/manifest.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "4chan X",
"version": "3.0.6",
"manifest_version": 2,
"description": "Cross-browser extension for productive lurking on 4chan.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [{
"js": ["script.js"],
"matches": ["*://api.4chan.org/*","*://boards.4chan.org/*","*://images.4chan.org/*","*://sys.4chan.org/*"],
"run_at": "document_start"
}],
"homepage_url": "https://4chan-x.just-believe.in/",
"minimum_chrome_version": "26",
"permissions": [
"storage"
]
}

9061
builds/crx/script.js Normal file

File diff suppressed because one or more lines are too long