diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-06-09 10:32:09 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2022-06-09 10:32:09 +0300 |
commit | 22b687876a25c1c8f3777320481ca584c838a838 (patch) | |
tree | f07b87c9215b68eb55c642cf5c0723fa0ce230a8 /src/pages | |
parent | Merge branch 'master' of https://github.com/libredirect/libredirect (diff) | |
download | libredirect-22b687876a25c1c8f3777320481ca584c838a838.zip |
Fixed maps. RTL to default instances checklist. Unify not working in chrmoium
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/background/background.js | 5 | ||||
-rw-r--r-- | src/pages/stylesheets/styles.css | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/pages/background/background.js b/src/pages/background/background.js index 04bd98dd..0815096b 100644 --- a/src/pages/background/background.js +++ b/src/pages/background/background.js @@ -69,10 +69,7 @@ browser.runtime.onInstalled.addListener( ) youtubeHelper.pasteInvidiousCookies(); -youtubeHelper.pastePipedLocalStorage(); -youtubeHelper.pastePipedMaterialLocalStorage(); translateHelper.pasteSimplyTranslateCookies(); -translateHelper.pasteLingvaLocalStorage(); twitterHelper.pasteNitterCookies(); wikipediaHelper.pasteWikilessCookies(); searchHelper.pasteSearxCookies(); @@ -215,7 +212,7 @@ browser.webRequest.onErrorOccurred.addListener( ) browser.commands.onCommand.addListener( - command => { + async command => { if (command === 'switchInstance') utils.switchInstance(); else if (command == 'copyRaw') utils.copyRaw(); else if (command == 'unify') utils.unify(); diff --git a/src/pages/stylesheets/styles.css b/src/pages/stylesheets/styles.css index e04f638f..0ef55da5 100644 --- a/src/pages/stylesheets/styles.css +++ b/src/pages/stylesheets/styles.css @@ -341,6 +341,10 @@ button svg { color: var(--text); } +div.checklist{ +direction: ltr; +} + div.checklist div { justify-content: space-between; margin: 5px 15px; |