Skip to content

Commit

Permalink
changed storage default mode to "local"
Browse files Browse the repository at this point in the history
- "privacy by default"
- reduces cloud related issues
  • Loading branch information
Alexander Kwaschny committed Nov 3, 2022
1 parent 24e7565 commit 9ae3ec8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
- filtering on "Following" page can be disabled (in settings)
- toggle visibility of "X" buttons
- share blacklists using import/export (in settings)
- blacklist is automatically synced between devices (in settings, can be deactivated)
- blacklist can automatically sync between devices (in settings, requires opt-in)
- one-click-toggle to disable/enable extension (click on the extension icon to access)
- compatible with FrankerFaceZ (FFZ) and BetterTTV (BTTV)
- supports Twitch's Dark Mode
Expand Down
3 changes: 2 additions & 1 deletion scripts/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ function cloneBlacklistItems(items) {
function getStorageMode(callback) {
logTrace('invoking getStorageMode()');

let useSyncStorage = true;
// default mode: local
let useSyncStorage = false;

chrome.storage.local.get('useLocalStorage', function(result) {

Expand Down
2 changes: 1 addition & 1 deletion webstore/chrome_description.de.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Funktionen
- Filterung auf der "Du folgst"-Seite kann deaktiviert werden (unter Einstellungen)
- Sichtbarkeit der "X"-Buttons umschaltbar
- Sperrliste im- und exportierbar (unter Einstellungen)
- Sperrliste synchronisiert sich automatisch mit allen Geräten (unter Einstellungen, kann deaktiviert werden)
- Sperrliste kann sich automatisch zwischen allen Geräten synchronisieren (unter Einstellungen, erfordert Opt-in)
- bequemes Ein- und Ausschalten der Erweiterung
- kompatibel mit BetterTTV (BTTV) und FrankerFaceZ (FFZ)
- unterstützt Twitchs dunklen Modus
Expand Down
2 changes: 1 addition & 1 deletion webstore/chrome_description.en.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Features
- filtering on "Following" page can be disabled (in settings)
- toggle visibility of "X" buttons
- share blacklists using import/export (in settings)
- blacklist is automatically synced between devices (in settings, can be deactivated)
- blacklist can automatically sync between devices (in settings, requires opt-in)
- one-click-toggle to disable/enable extension (click on the extension icon to access)
- compatible with BetterTTV (BTTV) and FrankerFaceZ (FFZ)
- supports Twitch's Dark Mode
Expand Down
2 changes: 1 addition & 1 deletion webstore/firefox_description.de.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- Filterung auf der "Du folgst"-Seite kann deaktiviert werden (unter Einstellungen)
- Sichtbarkeit der "X"-Buttons umschaltbar
- Sperrliste im- und exportierbar (unter Einstellungen)
- Sperrliste synchronisiert sich automatisch mit allen Geräten (unter Einstellungen, kann deaktiviert werden)
- Sperrliste kann sich automatisch zwischen allen Geräten synchronisieren (unter Einstellungen, erfordert Opt-in)
- bequemes Ein- und Ausschalten der Erweiterung
- kompatibel mit BetterTTV (BTTV) und FrankerFaceZ (FFZ)
- unterstützt Twitchs dunklen Modus
Expand Down
2 changes: 1 addition & 1 deletion webstore/firefox_description.en.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- filtering on "Following" page can be disabled (in settings)
- toggle visibility of "X" buttons
- share blacklists using import/export (in settings)
- blacklist is automatically synced between devices (in settings, can be deactivated)
- blacklist can automatically sync between devices (in settings, requires opt-in)
- one-click-toggle to disable/enable extension (click on the extension icon to access)
- compatible with BetterTTV (BTTV) and FrankerFaceZ (FFZ)
- supports Twitch's Dark Mode
Expand Down

0 comments on commit 9ae3ec8

Please sign in to comment.