├── LICENSE ├── README.md └── _config.yml /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Elias Ojala 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # My Firefox recommendations 2 | My Firefox recommendations 3 | 4 | * [all Firefox Downloads](https://www.mozilla.org/en-US/firefox/all/) 5 | 6 | ## Addons 7 | 8 | ### Bare minimum 9 | 10 | * uBlock Origin (see [uBlock Origin recommendations](https://github.com/theel0ja/ubo-recommendations/blob/master/README.md)) 11 | * [HTTPS Everywhere](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/) 12 | * [Redirect AMP to HTML](https://addons.mozilla.org/en-US/firefox/addon/amp2html/) 13 | * [View Image](https://addons.mozilla.org/en-US/firefox/addon/view-image/) 14 | * [YouTube Classic](https://addons.mozilla.org/en-US/firefox/addon/youtube-classic/) 15 | * [Cookie AutoDelete](https://addons.mozilla.org/en-US/firefox/addon/cookie-autodelete/) (tweaks: enable autoclean) 16 | * [Anti paywall](https://github.com/nextgens/anti-paywall/releases) 17 | 18 | ### For advanced users 19 | 20 | * [uMatrix](https://addons.mozilla.org/en-US/firefox/addon/umatrix/) (see [my startingpoint](https://github.com/theel0ja/uMatrix-rules)) 21 | 22 | ### Conveniences 23 | 24 | * [Search by Image on Google](https://addons.mozilla.org/en-US/firefox/addon/search-by-image-on-google/) 25 | * [To Google Translate](https://addons.mozilla.org/en-US/firefox/addon/to-google-translate/) 26 | * [Flagfox](https://addons.mozilla.org/en-US/firefox/addon/flagfox/) (tweaks: [iplookup.theel0ja.info/add-to-flagfox](https://iplookup.theel0ja.info/add-to-flagfox)) 27 | 28 | ### Website enchancers 29 | 30 | * [npmhub](https://addons.mozilla.org/en-US/firefox/addon/npm-hub/) 31 | * [Reddit Enhancement Suite](https://addons.mozilla.org/en-US/firefox/addon/reddit-enhancement-suite/) 32 | * [Refined Github](https://addons.mozilla.org/en-US/firefox/addon/refined-github-/) 33 | 34 | ### Privacy 35 | * [Privacy Badger](https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/) 36 | * [Decentraleyes](https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/) 37 | * [Facebook Container](https://addons.mozilla.org/en-US/firefox/addon/facebook-container/) 38 | * [uBO-Scope](https://addons.mozilla.org/en-US/firefox/addon/ubo-scope/) 39 | 40 | ### Miscellaneous 41 | 42 | * [FoxyProxy Standard](https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/) (check out if your VPN provider has SOCKS proxies) 43 | * [Stylus](https://addons.mozilla.org/en-US/firefox/addon/styl-us/) ([Dark mode guide](https://github.com/theel0ja/dark-theme-on-web/blob/master/README.md), [Lists I use](https://github.com/theel0ja/Stylus-Lists)) 44 | * [Redirector](http://einaregilsson.com/redirector/) (see [Dandelion Sprout's Redirector Assistant List](https://github.com/DandelionSprout/adfilt/tree/master/Dandelion%20Sprout-s%20Redirector%20Assistant%20List)) 45 | 46 | ## Settings 47 | 48 | * Set Firefox as default browser 49 | * Set search engine to [DuckDuckGo](https://duckduckgo.com/) (or [Startpage](https://www.startpage.com/)) 50 | * Block 3rd-party cookies 51 | * Disable Firefox's integrated tracking protection 52 | * Disable "Highlights" and "Snippets" in the "Home" tab 53 | * Disable telemetry (every toggle under "Firefox Data Collection and Use") 54 | * Disable "Deceptive Content and Dangerous Software Protection" (Google "Safe Browsing") 55 | 56 | 57 | ## about:config 58 | 59 | 60 | 61 | - `browser.ctrlTab.recentlyUsedOrder` = false 62 | - `view_source.wrap_long_lines` = true 63 | - `extensions.pocket.enabled` = false 64 | - `general.autoScroll` = true (useful on linux especially) 65 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: "My Firefox recommendations" 2 | --------------------------------------------------------------------------------