3.3 - Extensions
3.3.1 - Firefox Web Browser Extensions
Step 1: Install Bulk URL Opener Extension
https://addons.mozilla.org/en-US/firefox/addon/bulkurlopener/
Step 2: Extension List
https://addons.mozilla.org/en-US/firefox/addon/absolute-enable-right-click/
https://addons.mozilla.org/en-US/firefox/addon/auto-tab-discard/
https://addons.mozilla.org/en-US/firefox/addon/bitwarden-password-manager/
https://addons.mozilla.org/en-US/firefox/addon/bulkurlopener/
https://addons.mozilla.org/en-US/firefox/addon/clippings/
https://addons.mozilla.org/en-US/firefox/addon/darkreader/
https://addons.mozilla.org/en-US/firefox/addon/detailed-seo-extension/
https://addons.mozilla.org/en-US/firefox/addon/duplicate-tabs-closer/
https://addons.mozilla.org/en-US/firefox/addon/ether-metamask/
https://addons.mozilla.org/en-US/firefox/addon/fonts-ninja/
https://addons.mozilla.org/en-US/firefox/addon/foxytab/
https://addons.mozilla.org/en-US/firefox/addon/image-max-url/
https://addons.mozilla.org/en-US/firefox/addon/istilldontcareaboutcookies/
https://addons.mozilla.org/en-US/firefox/addon/languagetool/
https://addons.mozilla.org/en-US/firefox/addon/livemarks/
https://addons.mozilla.org/en-US/firefox/addon/markdown-viewer-chrome/
https://addons.mozilla.org/en-US/firefox/addon/markdown-viewer/
https://addons.mozilla.org/en-US/firefox/addon/metamask/
https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/
https://addons.mozilla.org/en-US/firefox/addon/print-edit-we/
https://addons.mozilla.org/en-US/firefox/addon/skip-redirect/
https://addons.mozilla.org/en-US/firefox/addon/snap-links/
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
https://addons.mozilla.org/en-US/firefox/addon/undoclosetabbutton/
https://addons.mozilla.org/en-US/firefox/addon/video-downloadhelper/
https://addons.mozilla.org/en-US/firefox/addon/vidiq-vision-for-youtube/
https://addons.mozilla.org/en-US/firefox/addon/vidiq-vision-youtube/
https://addons.mozilla.org/en-US/firefox/addon/wappalyzer/
https://addons.mozilla.org/en-US/firefox/addon/windscribe/
https://addons.mozilla.org/en-US/firefox/addon/youtube-nonstop/
Step 3: Download vdhcoapp for Video Download Helper
curl -sSLf https://github.com/aclap-dev/vdhcoapp/releases/latest/download/install.sh | bash
Step 4: Update the Clipings Firefox Extension
## YT Takeaways
Watch the YouTube video at this link:
1. List the key takeaways – What are the main points or arguments made in the video?
2. State your opinion – Do you agree or disagree with the message? Briefly explain why.
3. Create a cheatsheet-style summary – Use emojis and short phrases to make a concise, easily readable summary of the video’s core insights.
Step 5: Configure uBlock Origin
- Go to Filter Lists and import the following:
https://raw.githubusercontent.com/DandelionSprout/adfilt/refs/heads/master/LegitimateURLShortener.txt
https://raw.githubusercontent.com/DandelionSprout/adfilt/refs/heads/master/ClearURLs%20for%20uBo/clear_urls_uboified.txt
- Go to My Filters and write the following:
*$removeparam=utm_source
*$removeparam=utm_medium
*$removeparam=utm_campaign
*$removeparam=utm_term
*$removeparam=utm_content
*$removeparam=fbclid
*$removeparam=gclid
*$removeparam=yclid
*$removeparam=mc_cid
*$removeparam=mc_eid
*$removeparam=pk_campaign
*$removeparam=pk_kwd
*$removeparam=oly_anon_id
*$removeparam=oly_enc_id
Step 6: ArkenFox (user.js)
If you need a ready-made configuration file that hardens Firefox, you can consider the one provided by ArkenFox at: https://github.com/arkenfox/user.js
3.3.2 - Google Antigravity Extensions
Install All Google Antigravity Extensions
exts=(
astro-build.astro-vscode
charliermarsh.ruff
marp-team.marp-vscode
mechatroner.rainbow-csv
ms-python.debugpy
ms-python.python
ms-python.vscode-python-envs
quarto.quarto
ritwickdey.liveserver
sonarsource.sonarlint-vscode
stylelint.vscode-stylelint
tyriar.sort-lines
vscjava.vscode-gradle
yzhang.markdown-all-in-one
)
installed=$(./antigravity --list-extensions)
for ext in "${exts[@]}"; do
# -F treats dots as dots (not wildcards)
# -x ensures it matches the WHOLE line (so 'python' won't match 'ms-python')
if echo "$installed" | grep -Fqx "$ext"; then
echo "✔ ${ext} skipped"
else
echo "Installing ${ext}..."
./antigravity --install-extension "$ext"
fi
done
For Reference
View all installed extensions:
antigravity --list-extensions
Extension Names For Reference:
https://marketplace.visualstudio.com/items?itemName=astro-build.astro-vscode
https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
https://marketplace.visualstudio.com/items?itemName=marp-team.marp-vscode
https://marketplace.visualstudio.com/items?itemName=mechatroner.rainbow-csv
https://marketplace.visualstudio.com/items?itemName=ms-python.debugpy
https://marketplace.visualstudio.com/items?itemName=ms-python.python
https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-python-envs
https://marketplace.visualstudio.com/items?itemName=quarto.quarto
https://marketplace.visualstudio.com/items?itemName=ritwickdey.liveserver
https://marketplace.visualstudio.com/items?itemName=sonarsource.sonarlint-vscode
https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint
https://marketplace.visualstudio.com/items?itemName=tyriar.sort-lines
https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-gradle
https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one