mirror of
https://github.com/HorlogeSkynet/thunderbird-user.js.git
synced 2025-09-01 17:38:31 +02:00
Compare commits
54 Commits
v60
...
cardbook/e
Author | SHA1 | Date | |
---|---|---|---|
6a7c2add8e | |||
894ae0d78b | |||
a6a674ad37 | |||
700f90e954 | |||
352394a62f | |||
fc6ea5582f | |||
428fa861b9 | |||
148bfac882 | |||
13b544b208 | |||
667189eedb | |||
b4a7a771ec | |||
e859c40916 | |||
b36710a76e | |||
ba65d33451 | |||
accbfcc009 | |||
5ee06c6d89 | |||
8591d9b2c8 | |||
ac6137d6f4 | |||
7bc7c89ac7 | |||
52d0864e41 | |||
37066f8c06 | |||
787ca411fb | |||
68d36833f7 | |||
f9413919b5 | |||
b58655a422 | |||
08b2bf9467 | |||
bc1a74afa7 | |||
8c2ef50da0 | |||
3cd96847ca | |||
10b1bb2b7c | |||
1692de442c | |||
a9b0166323 | |||
ce8dfe3329 | |||
30848dd7e7 | |||
b90bbe45b2 | |||
5ede0acaaa | |||
eb8cade42e | |||
c57ead1b76 | |||
3ce96df737 | |||
49921ed98c | |||
5f9bf7f88d | |||
989a0f9447 | |||
c549b95263 | |||
634914c41f | |||
59d8211ff4 | |||
3fa04abd7a | |||
bc6e3335f9 | |||
d51c67fc70 | |||
9d9fb07b8e | |||
d5459932b4 | |||
1d418ff6fc | |||
791f8fc34a | |||
2280e84bfe | |||
d78aa86ede |
45
.eslintrc.yml
Normal file
45
.eslintrc.yml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
%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
|
17
.github/workflows/linting.yml
vendored
Normal file
17
.github/workflows/linting.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
---
|
||||||
|
name: Linting
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Run ESLint on user.js
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
|
||||||
|
- run: npm install -g eslint
|
||||||
|
- run: eslint user.js
|
4
LICENSE
4
LICENSE
@ -1,6 +1,8 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2019 ghacksuserjs
|
Copyright (c) 2019-2020 HorlogeSkynet
|
||||||
|
Copyright (c) 2019 dngray
|
||||||
|
Copyright (c) 2019 ghacksuserjs
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
45
README.md
45
README.md
@ -1,17 +1,40 @@
|
|||||||
### :large_blue_diamond: user.js
|
# Thunderbird User.JS
|
||||||
A `user.js` is a configuration file that can control hundreds of Thunderbird settings. For a more technical breakdown and explanation, you can read more on the [overview](https://github.com/dngray/ghacks-thunderbird-user.js/wiki/1.1-Overview) wiki page.
|
|
||||||
|
|
||||||
### :large_blue_diamond: thunderbird user.js
|
> Thunderbird privacy, security and anti-fingerprinting: a comprehensive user.js template for configuration and hardening
|
||||||
The Thunderbird `user.js` is a **template** which aims to provide as much privacy and enhanced security as possible. It differs from the `ghacks user.js` in that the focus is to keep Thunderbird as an **email 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.
|
|
||||||
|
|
||||||
- If you're using Thunderbird with Tor we suggest that you install the [TorBirdy](https://addons.thunderbird.net/addon/torbirdy) addon. If you are using Tor, you should also consider using [Tails](https://tails.boum.org/) or [Whonix](https://www.whonix.org/).
|
### :purple_square: user.js
|
||||||
- If you're a **Gmail** user see [this article about OAuth2](https://github.com/dngray/ghacks-thunderbird-user.js/wiki/3.1-OAuth2-Users).
|
|
||||||
- For information about [extensions](https://github.com/dngray/ghacks-thunderbird-user.js/wiki/4.1-Extensions), see the wiki. **Calendar** users should [see this page](https://github.com/dngray/ghacks-thunderbird-user.js/wiki/4.1.1-Calendar).
|
An `user.js` is a configuration file that can control hundreds of Thunderbird settings.
|
||||||
|
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
|
||||||
|
|
||||||
|
[](https://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
|
The `thunderbird user.js` is a **template** which aims to provide as much privacy and enhanced security as possible.
|
||||||
|
It differs from the `arkenfox user.js` in that the focus is to keep Thunderbird as an **email 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.
|
||||||
|
|
||||||
|
- If you're using Thunderbird (< 68) with Tor we suggest that you install the [TorBirdy](https://addons.thunderbird.net/addon/torbirdy) add-on. If you are using Tor, you should also consider using [Tails](https://tails.boum.org/) or [Whonix](https://www.whonix.org/).
|
||||||
|
- If you're using **Gmail**, please check [this article about OAuth2](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki/3.1-OAuth2-Users).
|
||||||
|
- 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).
|
||||||
|
|
||||||
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 has only been tested in the latest stable release.
|
||||||
|
|
||||||
### :large_blue_diamond: acknowledgments
|
### :orange_square: Sitemap
|
||||||
* [tya99](https://github.com/tya99) most of the ground work and initial port from the Firefox version of [ghacks user.js](https://github.com/ghacksuserjs/ghacks-user.js)
|
|
||||||
* [dngray](https://github.com/dngray) continual maintenance and Wiki
|
|
||||||
|
|
||||||
### :large_blue_diamond: [](https://opensource.org/licenses/MIT)
|
- [Releases](https://github.com/HorlogeSkynet/thunderbird-user.js/releases)
|
||||||
|
- [Issues](https://github.com/HorlogeSkynet/thunderbird-user.js/issues)
|
||||||
|
- [Wiki](https://github.com/HorlogeSkynet/thunderbird-user.js/wiki)
|
||||||
|
|
||||||
|
### :red_square: Acknowledgments
|
||||||
|
|
||||||
|
* @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
|
||||||
|
* [@HorlogeSkynet](https://github.com/HorlogeSkynet) continual maintenance
|
||||||
|
|
||||||
|
### :blue_square: Related Projects
|
||||||
|
|
||||||
|
* [Privacy Handbuch](https://www.privacy-handbuch.de/handbuch_31p.htm)
|
||||||
|
* [Privacy Haters](http://r-36.net/scm/privacy-haters/file/README.md.html)
|
||||||
|
* ~~CHEF-KOCH/TBCK~~
|
||||||
|
Reference in New Issue
Block a user