mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-01 16:33:06 +01:00
5c68867b92
The pseudo user styles code served only browsers based on Chromium 65 and earlier -- Chromium 66 supports native user styles and was first released more than two years ago. In Chromium-based browsers, the pseudo user styles code is being unconditionally injected in every page/frame just in case the browser is version 65 or earlier. Removing pseudo user styles reduce uBO's main content script in Chromium-based browsers by more than 20K. Related thread: - https://github.com/NanoAdblocker/NanoCore/issues/348#issuecomment-653646507
41 lines
1.0 KiB
Bash
Executable File
41 lines
1.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
echo "*** uBlock0.firefox: Creating web store package"
|
|
|
|
BLDIR=dist/build
|
|
DES="$BLDIR"/uBlock0.firefox
|
|
rm -rf $DES
|
|
mkdir -p $DES
|
|
|
|
echo "*** uBlock0.firefox: copying common files"
|
|
bash ./tools/copy-common-files.sh $DES
|
|
|
|
cp -R $DES/_locales/nb $DES/_locales/no
|
|
|
|
cp platform/firefox/manifest.json $DES/
|
|
cp platform/firefox/webext.js $DES/js/
|
|
cp platform/firefox/vapi-webrequest.js $DES/js/
|
|
|
|
# Firefox/webext-specific
|
|
rm $DES/img/icon_128.png
|
|
|
|
echo "*** uBlock0.firefox: Generating meta..."
|
|
python tools/make-firefox-meta.py $DES/
|
|
|
|
if [ "$1" = all ]; then
|
|
echo "*** uBlock0.firefox: Creating package..."
|
|
pushd $DES > /dev/null
|
|
zip ../$(basename $DES).xpi -qr *
|
|
popd > /dev/null
|
|
elif [ -n "$1" ]; then
|
|
echo "*** uBlock0.firefox: Creating versioned package..."
|
|
pushd $DES > /dev/null
|
|
zip ../$(basename $DES).xpi -qr *
|
|
popd > /dev/null
|
|
mv "$BLDIR"/uBlock0.firefox.xpi "$BLDIR"/uBlock0_"$1".firefox.xpi
|
|
fi
|
|
|
|
echo "*** uBlock0.firefox: Package done."
|