mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
89fd76ac39
When using paths, platform implementations of setIcon typically will fetch the resource then convert to image data internally. It is preferable for uBO to do this conversion itself as it can be done only once at launch time. With chromium-based browsers, using image data eliminate the incessant network traffic to fetch browser icons as reported in the extension's dev tool, meaning a good chunk of overhead is eliminated. Also, use optimal icon sizes, as of now both chromium and firefox prefers 16px instead of 19px, and 32px instead of 38px.
56 lines
1.7 KiB
Bash
Executable File
56 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock0.chromium: Creating web store package"
|
|
echo "*** uBlock0.chromium: Copying files"
|
|
|
|
DES=dist/build/uBlock0.chromium
|
|
rm -rf $DES
|
|
mkdir -p $DES
|
|
|
|
bash ./tools/make-assets.sh $DES
|
|
|
|
cp -R src/css $DES/
|
|
cp -R src/img $DES/
|
|
cp -R src/js $DES/
|
|
cp -R src/lib $DES/
|
|
cp -R src/_locales $DES/
|
|
cp src/*.html $DES/
|
|
cp platform/chromium/*.js $DES/js/
|
|
cp platform/chromium/*.html $DES/
|
|
cp platform/chromium/*.json $DES/
|
|
cp LICENSE.txt $DES/
|
|
|
|
echo "*** uBlock0.chromium: concatenating content scripts"
|
|
cat $DES/js/vapi-usercss.js > /tmp/contentscript.js
|
|
echo >> /tmp/contentscript.js
|
|
grep -v "^'use strict';$" $DES/js/vapi-usercss.real.js >> /tmp/contentscript.js
|
|
echo >> /tmp/contentscript.js
|
|
grep -v "^'use strict';$" $DES/js/vapi-usercss.pseudo.js >> /tmp/contentscript.js
|
|
echo >> /tmp/contentscript.js
|
|
grep -v "^'use strict';$" $DES/js/contentscript.js >> /tmp/contentscript.js
|
|
mv /tmp/contentscript.js $DES/js/contentscript.js
|
|
rm $DES/js/vapi-usercss.js
|
|
rm $DES/js/vapi-usercss.real.js
|
|
rm $DES/js/vapi-usercss.pseudo.js
|
|
|
|
# Chrome store-specific
|
|
cp -R $DES/_locales/nb $DES/_locales/no
|
|
|
|
echo "*** uBlock0.chromium: Generating web accessible resources..."
|
|
cp -R src/web_accessible_resources $DES/
|
|
python3 tools/import-war.py $DES/
|
|
|
|
echo "*** uBlock0.chromium: Generating meta..."
|
|
python tools/make-chromium-meta.py $DES/
|
|
|
|
if [ "$1" = all ]; then
|
|
echo "*** uBlock0.chromium: Creating package..."
|
|
pushd $(dirname $DES/) > /dev/null
|
|
zip uBlock0.chromium.zip -qr $(basename $DES/)/*
|
|
popd > /dev/null
|
|
fi
|
|
|
|
echo "*** uBlock0.chromium: Package done."
|