mirror of
https://github.com/HorlogeSkynet/thunderbird-user.js.git
synced 2025-09-01 09:28:32 +02:00
Compare commits
50 Commits
v91.2
...
version/11
Author | SHA1 | Date | |
---|---|---|---|
824edabe63 | |||
48529d1963 | |||
c6fef1356e | |||
ebeb8cf3fb | |||
ee7649a8b4 | |||
7390a8056c | |||
e6c5df30f2 | |||
ad0cac10b2 | |||
d6b18302e4 | |||
ee80afc278 | |||
3996c279fd | |||
088da14f7e | |||
87b0d325e2 | |||
5a59c1b7e7 | |||
167ddc02be | |||
8bd612fd82 | |||
fc144d3cb1 | |||
ac8a715b06 | |||
439e5b5e7d | |||
07d26c7881 | |||
d2283b8c91 | |||
32afc0b38d | |||
32663905d0 | |||
4f5cde426c | |||
cc6cab6525 | |||
eba6bc4dea | |||
d8d79d6c84 | |||
494f684d74 | |||
8970a6fda1 | |||
08713b3ea9 | |||
a3a5c4ad86 | |||
6798bda078 | |||
c1e6a54f75 | |||
0dcc49687f | |||
0ccd0c0e99 | |||
d778e6d7b6 | |||
902231ecf0 | |||
ea3c48a7a9 | |||
f885b50de5 | |||
255ccd84ae | |||
0abbda8e39 | |||
03c86462d8 | |||
838529ffbd | |||
5387c41c91 | |||
22efe76834 | |||
fdcaf8570b | |||
5caedc08de | |||
5a787eb8ce | |||
39aaee7fa3 | |||
4dc99eb87f |
36
.eslint.config.mjs
Normal file
36
.eslint.config.mjs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// Thunderbird User.JS ESLint configuration file
|
||||||
|
|
||||||
|
import js from "@eslint/js";
|
||||||
|
|
||||||
|
export default [
|
||||||
|
js.configs.recommended,
|
||||||
|
{
|
||||||
|
rules: {
|
||||||
|
// Expect only double-quoted strings.
|
||||||
|
quotes: ["error", "double"],
|
||||||
|
|
||||||
|
// Expect a semicolon after each statement.
|
||||||
|
semi: ["error", "always", {"omitLastInOneLineBlock": false}],
|
||||||
|
|
||||||
|
// As project code style, don't allow tabulation nor trailing whitespaces.
|
||||||
|
"no-tabs": "error",
|
||||||
|
"no-trailing-spaces": "error",
|
||||||
|
|
||||||
|
// Don't allow whitespace before semicolons.
|
||||||
|
"semi-spacing": ["error", {"before": false}],
|
||||||
|
|
||||||
|
// Don't allow irregular whitespace characters in our sheet.
|
||||||
|
"no-irregular-whitespace": ["error", {"skipStrings": false, "skipComments": false}],
|
||||||
|
},
|
||||||
|
languageOptions: {
|
||||||
|
// From <https://searchfox.org/mozilla-central/rev/c938c7416c633639a5c8ce4412be586eefb48005/modules/libpref/parser/src/lib.rs#296>
|
||||||
|
globals: {
|
||||||
|
pref: "readonly",
|
||||||
|
user_pref: "readonly",
|
||||||
|
sticky: "readonly",
|
||||||
|
locked: "readonly",
|
||||||
|
sticky_pref: "readonly",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
@ -1,45 +0,0 @@
|
|||||||
%YAML 1.2
|
|
||||||
---
|
|
||||||
|
|
||||||
root: true
|
|
||||||
|
|
||||||
extends: 'eslint:recommended'
|
|
||||||
|
|
||||||
globals:
|
|
||||||
# From <https://searchfox.org/mozilla-central/rev/c938c7416c633639a5c8ce4412be586eefb48005/modules/libpref/parser/src/lib.rs#296>
|
|
||||||
pref: true
|
|
||||||
user_pref: true
|
|
||||||
sticky: true
|
|
||||||
locked: true
|
|
||||||
sticky_pref: true
|
|
||||||
|
|
||||||
rules:
|
|
||||||
# Expect a semicolon after each statement.
|
|
||||||
semi:
|
|
||||||
- "error"
|
|
||||||
- "always"
|
|
||||||
-
|
|
||||||
omitLastInOneLineBlock: false
|
|
||||||
|
|
||||||
# As internal code style, don't allow tabulation.
|
|
||||||
no-tabs: "error"
|
|
||||||
# ... nor trailing spaces !
|
|
||||||
no-trailing-spaces: "error"
|
|
||||||
|
|
||||||
# Expect only double-quoted strings.
|
|
||||||
quotes:
|
|
||||||
- "error"
|
|
||||||
- "double"
|
|
||||||
|
|
||||||
# Don't allow whitespace before semicolons.
|
|
||||||
semi-spacing:
|
|
||||||
- "error"
|
|
||||||
-
|
|
||||||
before: false
|
|
||||||
|
|
||||||
# Don't allow irregular whitespace characters in our sheet.
|
|
||||||
no-irregular-whitespace:
|
|
||||||
- "error"
|
|
||||||
-
|
|
||||||
skipStrings: false
|
|
||||||
skipComments: false
|
|
8
.github/workflows/linting.yml
vendored
8
.github/workflows/linting.yml
vendored
@ -9,9 +9,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v4
|
||||||
|
|
||||||
- run: npm install -g eslint
|
- run: npm install eslint @eslint/js
|
||||||
- run: eslint user.js
|
- run: npx eslint -c .eslint.config.mjs user.js
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2019-2022 HorlogeSkynet
|
Copyright (c) 2019-2024 HorlogeSkynet
|
||||||
Copyright (c) 2019 dngray
|
Copyright (c) 2019 dngray
|
||||||
Copyright (c) 2019 arkenfox [prev. ghacksuserjs]
|
Copyright (c) 2019 arkenfox [prev. ghacksuserjs]
|
||||||
|
|
||||||
|
20
README.md
20
README.md
@ -2,18 +2,17 @@
|
|||||||
|
|
||||||
> Thunderbird privacy, security and anti-fingerprinting: a comprehensive user.js template for configuration and hardening
|
> Thunderbird privacy, security and anti-fingerprinting: a comprehensive user.js template for configuration and hardening
|
||||||
|
|
||||||
### :purple_square: user.js
|
### 🟪 user.js
|
||||||
|
|
||||||
An `user.js` is a configuration file that can control hundreds of Thunderbird settings.
|
An `user.js` is a configuration file that can control Thunderbird settings - for a more technical breakdown and explanation, you can read more in the [wiki](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/1.1-Overview).
|
||||||
For a more technical breakdown and explanation, you can read more on the [overview](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/1.1-Overview) Wiki page.
|
|
||||||
|
|
||||||
### :green_square: Thunderbird user.js
|
### 🟩 Thunderbird user.js
|
||||||
|
|
||||||
[](https://opensource.org/licenses/MIT)
|
[](https://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
The `thunderbird user.js` is a **template** which aims to provide as much privacy and enhanced security as possible, and to reduce tracking and fingerprinting as much as possible - while minimizing any loss of functionality and breakage (but it will happen).
|
The `thunderbird user.js` is a **template** which aims to provide as much privacy and enhanced security as possible, and to reduce tracking and fingerprinting as much as possible - while minimizing any loss of functionality and breakage (but it will happen).
|
||||||
|
|
||||||
Everyone, experts included, should at least read the [implementation](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/1.3-Implementation) wiki page.
|
Everyone, experts included, should at least read the [wiki](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki), as it contains important information regarding a few `user.js` settings.
|
||||||
|
|
||||||
It differs from the `arkenfox user.js` in that the focus is to keep Thunderbird as an **e-mail client** and disable as many web browsing features as possible. We believe web browsing should be done in a web browser, and not an email client.
|
It differs from the `arkenfox user.js` in that the focus is to keep Thunderbird as an **e-mail client** and disable as many web browsing features as possible. We believe web browsing should be done in a web browser, and not an email client.
|
||||||
|
|
||||||
@ -22,23 +21,22 @@ It differs from the `arkenfox user.js` in that the focus is to keep Thunderbird
|
|||||||
- For information about [extensions](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/4.1-Extensions), see the Wiki.
|
- For information about [extensions](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/4.1-Extensions), see the Wiki.
|
||||||
- **Calendar** users should [see this page](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/4.1.1-Calendar).
|
- **Calendar** users should [see this page](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/4.1.1-Calendar).
|
||||||
|
|
||||||
Also be aware that this `user.js` is made specifically for Thunderbird and has only been tested in the latest stable release.
|
Also be aware that this `user.js` is made specifically for Thunderbird and is only being tested against releases with extended support (ESR).
|
||||||
|
|
||||||
### :orange_square: Sitemap
|
### 🟧 Sitemap
|
||||||
|
|
||||||
- [Releases](https://github.com/HorlogeSkynet/thunderbird-user.js/releases)
|
- [Releases](https://github.com/HorlogeSkynet/thunderbird-user.js/releases)
|
||||||
- [Issues](https://github.com/HorlogeSkynet/thunderbird-user.js/issues)
|
- [Issues](https://github.com/HorlogeSkynet/thunderbird-user.js/issues)
|
||||||
- [Wiki](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki)
|
- [Wiki](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki)
|
||||||
|
|
||||||
### :red_square: Acknowledgments
|
### 🟥 Acknowledgments
|
||||||
|
|
||||||
* @tya99 most of the ground work and initial port from the Firefox version of [arkenfox user.js](https://github.com/arkenfox/user.js)
|
* @tya99 most of the ground work and initial port from the Firefox version of [arkenfox user.js](https://github.com/arkenfox/user.js)
|
||||||
* [@dngray](https://github.com/dngray) continual maintenance and Wiki
|
* [@dngray](https://github.com/dngray) continual maintenance and Wiki
|
||||||
* [@HorlogeSkynet](https://github.com/HorlogeSkynet) continual maintenance
|
* [@HorlogeSkynet](https://github.com/HorlogeSkynet) continual maintenance
|
||||||
|
|
||||||
### :blue_square: Related Projects
|
### 🟦 Related Projects
|
||||||
|
|
||||||
* [Privacy Handbuch](https://www.privacy-handbuch.de/handbuch_31p.htm)
|
* [Privacy Handbuch](https://www.privacy-handbuch.de/handbuch_31p.htm)
|
||||||
* [Privacy Haters](http://r-36.net/scm/privacy-haters/file/README.md.html)
|
* [Privacy Haters](http://r-36.net/scm/privacy-haters/file/README.md.html)
|
||||||
* [12bytes.org's user-overrides.js](https://codeberg.org/12bytes.org/thunderbird-user.js-supplement)
|
* [12bytes's user-overrides.js](https://codeberg.org/12bytes/thunderbird-user.js-supplement)
|
||||||
* ~~CHEF-KOCH/TBCK~~
|
|
||||||
|
Reference in New Issue
Block a user