Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions CHANGELOG.md

This file was deleted.

6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Protonmail Unofficial Webextension

## Download
- Firefox: [ProtonMail (unofficial) on Firefox Addons](https://addons.mozilla.org/en-US/firefox/addon/protonmail/)
- Microsoft Edge: [ProtonMail (unofficial) on Microsoft Edge Addons](https://microsoftedge.microsoft.com/addons/detail/iemeabfnjpcnlajlflkdkcapdfadhpbp)
- Chromium based browsers: [ProtonMail (unofficial) on Chrome Web Store](https://chrome.google.com/webstore/detail/protonmail-unofficial/jfiaocmgamojjagpllpljapgekgmkaje)
- Opera: [ProtonMail (unofficial) on Opera addons](https://addons.opera.com/en/extensions/details/protonmail-unofficial/)
Please build your own or if you insist, you can download the compiled zips from the root folder.
Current plugins available as extensions are now working because the ProtonMail changed the domain.

## Building
run `npm i && npm run build:firefox` or `npm i && npm run build:chromium`. Extension will compile to ./build, run `npm run deploy` to create the packed extensions zip.
Binary file added chromium-1.10.0.zip
Binary file not shown.
Binary file added chromium-1.20.0.zip
Binary file not shown.
Binary file added firefox-1.10.0.zip
Binary file not shown.
18,152 changes: 18,111 additions & 41 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions src/shared/protonDomains.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
module.exports = {
protonDomains: [
"mail.protonmail.com",
"old.protonmail.com",
"beta.protonmail.com",
"app.protonmail.ch",
"protonirockerxow.onion",
"mail.proton.me",
"protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion",
],
};
2 changes: 1 addition & 1 deletion src/shared/store/accounts/reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const initialState: IProtonAccount[] = process.env.NODE_ENV !== "development" ?
unreadCount: n,
sessions: n % 3 === 0 ? [
{
domain: "mail.protonmail.com",
domain: "mail.proton.me",
email: `email${n}@protonmail.com`,
uid: "uid",
sharedSessionObject: {
Expand Down
2 changes: 1 addition & 1 deletion src/shared/store/settings/reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import randomBytes from "randombytes";

export const defaultSettings: ISettings = {
language: "en",
preferredDomain: "mail.protonmail.com",
preferredDomain: "mail.proton.me",
fetchInterval: 1 * 60,
singleNotificationTitle: "",
singleNotificationMessage: "",
Expand Down