Added makefiles
This commit is contained in:
parent
e691417301
commit
5c973cb449
3
genkey.sh
Executable file
3
genkey.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Yes, I'm paranoid!
|
||||
openssl genrsa 4096 | openssl pkcs8 -topk8 -nocrypt -out key.pem
|
2
make.cmd
Executable file
2
make.cmd
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
chrome.exe --pack-extension=src --pack-extension-key=key.pem
|
10
make.sh
Executable file
10
make.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
google-chrome --pack-extension=src --pack-extension-key=key.pem
|
||||
|
||||
# rename output file
|
||||
mv src.crx gplusblacklist.crx
|
||||
|
||||
# remove Chrome garbage
|
||||
if [ -f libpeerconnection.log ]; then
|
||||
rm libpeerconnection.log
|
||||
fi
|
Reference in New Issue
Block a user