add in an icon and a button for future use

This commit is contained in:
idk
2019-02-07 22:19:43 -05:00
parent 067f7a38d0
commit 1c2097ff4d
4 changed files with 1221 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
install:
install: uninstall
mkdir -p /usr/share/webext/i2psetproxy.js@eyedeekay.github.io \
/usr/share/mozilla/extensions/i2psetproxy.js@eyedeekay.github.io
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/
cp -rv options /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/options
cp -rv icons /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/icons
cp background.js /usr/share/webext/i2psetproxy.js@eyedeekay.github.io
cp proxy.js /usr/share/webext/i2psetproxy.js@eyedeekay.github.io
cp manifest.json /usr/share/webext/i2psetproxy.js@eyedeekay.github.io/
@@ -16,7 +17,7 @@ uninstall:
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/i2psetproxy.js@eyedeekay.github.io
zip:
zip -r -FS ../i2psetproxy.js.zip *
zip --exclude="./i2psetproxy.js@eyedeekay.github.io.xpi" -r -FS ../i2psetproxy.js.zip *
clobber:
rm -f ../i2psetproxy.js.zip ../i2p_proxy*.xpi

BIN
icons/toopie.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

1210
icons/toopie.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -10,6 +10,13 @@
"name": "i2psetproxy.js",
"version": "1.12",
"description": "Set up a browser to use the i2p http proxy automatically",
"icons": {
"48": "icons/toopie.png"
},
"browser_action": {
"default_icon": "icons/toopie.png",
"default_title": "Reset Tunnel"
},
"options_ui": {
"page": "options/options.html"
},