Skip to content

Commit

Permalink
added packing script
Browse files Browse the repository at this point in the history
  • Loading branch information
selotape committed Jul 8, 2016
1 parent 310c9bc commit 128666e
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ ToDo:

Extension:

* find new icon
* add 16, 48 and 128 pixel icons and psd source
- find new icon
- add 16, 48 and 128 pixel icons and psd source

Options Page:

* highlight save button when edits were made. otherwise, unhighlight it.
* autosave when editing
* enforce valid url characters
* add icon to banner
* make the UrlBlackList a proper list, with add/remove buttons for items
* add a "do not close pinned tabs" check box
- highlight save button when edits were made. otherwise, unhighlight it.
- autosave when editing
- enforce valid url characters
- add icon to banner
- make the UrlBlackList a proper list, with add/remove buttons for items
- add a "do not close pinned tabs" check box

Background:
* refactor to event page
- refactor to event page
Binary file added close9gag_crx/img/misc/CLOSE-ALL-THE-TABS.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added close9gag_crx/img/misc/X-All-The-Y.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added close9gag_crx/img/misc/X-All-The-Y.xcf
Binary file not shown.
Binary file added close9gag_crx/img/misc/X-All-The-Y_BnW.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added close9gag_crx/img/misc/X-All-The-Y_white.xcf
Binary file not shown.
2 changes: 1 addition & 1 deletion close9gag_crx/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"name": "CLOSE ALL THE 9GAG !!1",
"description": "closes all 9gag (and other) tabs every X minutes",
"version": "0.0.1",
"version": "0.0.2",

"background": {
"scripts": ["background.js"]
Expand Down
4 changes: 3 additions & 1 deletion close9gag_crx/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
<div id="status"></div>
</br>
<button id="save">Save</button> <button id="test">Test</button>

<a href="https://github.com/selotape/close9gag" style="float: right;">drop by for a visit</a>


<script src="options.js"></script>
</body>
</html>
13 changes: 13 additions & 0 deletions package.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@echo off

SET /p version="Version Number:"

FIND "%version%" close9gag_crx\manifest.json >nul

IF %ERRORLEVEL% equ 1 (
echo "Error: imput version number doesnt match the manifest."
) ELSE (
"C:\Program Files\7-Zip\7z.exe" a -tzip "tags\%version%\close9gag_crx.zip" "close9gag_crx"
)

PAUSE

0 comments on commit 128666e

Please # to comment.