Git Product home page Git Product logo

firefox-tweaks's Introduction

Firefox tweaks

This was originally based on some settings from the ghacks repo (which now redirects to arkenfox)

Overview

These settings are mostly cosmetic and privacy related.
I don't believe in changing "performance" settings. If they were beneficial, Firefox would ship them by default. Most of the time, they cause more harm than good.

Update files via script

  1. Create a new Firefox profile from about:profiles using a unique string. For example, mine is "loganmarchione".
  2. Use either the Windows or Linux commands below to download my files to your machine. Change the $string variable as needed.

Windows (run via PowerShell)

# The special string that our profile contains
$string="loganmarchione"

# The full path for our profile that contains that string
$basedir = Resolve-Path "$env:appdata\Mozilla\Firefox\Profiles\*.$string" | Select -ExpandProperty Path

# URLs of files to get and their output locations
$userjs_url = "https://raw.githubusercontent.com/loganmarchione/Firefox-tweaks/master/user.js"
$userjs_out = "$basedir\user.js"
$userchrome_url = "https://raw.githubusercontent.com/loganmarchione/Firefox-tweaks/master/userChrome.css"
$userchrome_out = "$basedir\chrome\userChrome.css"

# Create directory for "chrome"
New-Item -ItemType Directory -Path "$basedir\chrome"

# Download the files
Invoke-WebRequest -Uri $userjs_url -OutFile $userjs_out
Invoke-WebRequest -Uri $userchrome_url -OutFile $userchrome_out

Linux (run via bash)

# The special string that our profile contains
string="loganmarchione"

# The full path for our profile that contains that string
basedir=$(find ~/.mozilla/firefox -name "*.$string" -type d)

# URLs of files to get and their output locations
userjs_url="https://raw.githubusercontent.com/loganmarchione/Firefox-tweaks/master/user.js"
userjs_out="$basedir/user.js"
userchrome_url="https://raw.githubusercontent.com/loganmarchione/Firefox-tweaks/master/userChrome.css"
userchrome_out="$basedir/chrome/userChrome.css"

# Create directory for "chrome"
mkdir -p "$basedir/chrome"

# Download the files
wget -O $userjs_out $userjs_url
wget -O $userchrome_out $userchrome_url

firefox-tweaks's People

Contributors

jplock avatar loganmarchione avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

firefox-tweaks's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.