Skip to content

Instantly share code, notes, and snippets.

@tklae
Last active January 11, 2024 09:54
Show Gist options
  • Save tklae/11092989 to your computer and use it in GitHub Desktop.
Save tklae/11092989 to your computer and use it in GitHub Desktop.
Install Firefox addons on osx
echo "Getting Adblock Plus" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/1865/addon-1865-latest.xpi \
&& echo "Getting Flashblock" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/433/addon-433-latest.xpi \
&& echo "Getting Ghostery" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/9609/addon-9609-latest.xpi \
&& echo "Getting Instantfox" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/287139/addon-287139-latest.xpi \
&& echo "Getting Developer Tools" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/60/addon-60-latest.xpi \
&& echo "Getting Lastpass" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/8542/platform:3/addon-8542-latest.xpi \
&& echo "Getting Colorzilla" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/271/addon-271-latest.xpi \
&& echo "Getting Firebug" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/1843/addon-1843-latest.xpi \
&& echo "Getting BetterPrivacy" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/6623/addon-6623-latest.xpi \
&& echo "Getting RestClient" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/9780/addon-9780-latest.xpi \
&& echo "Getting CookiesManagerPlus" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/92079/addon-92079-latest.xpi \
&& echo "Getting Greasemonkey" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/748/addon-748-latest.xpi \
&& echo "Getting Pocket" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/7661/addon-7661-latest.xpi \
&& echo "Getting XPathChecker" \
&& wget https://addons.mozilla.org/firefox/downloads/latest/1095/addon-1095-latest.xpi \
&& echo "Getting Markdown-Viewer" \
&& wget https://addons.mozilla.org/firefox/downloads/file/204110/markdown_viewer-1.3-fx.xpi \
&& echo "Getting About:AddonsMemory" \
&& wget https://addons.mozilla.org/firefox/downloads/file/238388/aboutaddons_memory-8-an+sm+fx-mac.xpi \
&& echo "Getting HttpsEverywhere" \
&& wget https://www.eff.org/files/https-everywhere-latest.xpi \
&& /Applications/Firefox.app/Contents/MacOS/firefox-bin *.xpi && rm *.xpi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment