diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md old mode 100644 new mode 100755 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/SECURITY.md b/SECURITY.md old mode 100644 new mode 100755 diff --git a/TabArray.png b/TabArray.png old mode 100644 new mode 100755 diff --git a/TabArray.svg b/TabArray.svg old mode 100644 new mode 100755 diff --git a/docs/PRIVACY_POLICY.md b/docs/PRIVACY_POLICY.md old mode 100644 new mode 100755 diff --git a/docs/addons.mozilla.org/description.en.md b/docs/addons.mozilla.org/description.en.md old mode 100644 new mode 100755 diff --git a/docs/addons.mozilla.org/description.ja.md b/docs/addons.mozilla.org/description.ja.md old mode 100644 new mode 100755 diff --git a/docs/index.md b/docs/index.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.0.0.md b/docs/releases/v11.0.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.1.0.md b/docs/releases/v11.1.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.10.0.md b/docs/releases/v11.10.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.2.0.md b/docs/releases/v11.2.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.2.1.md b/docs/releases/v11.2.1.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.3.0.md b/docs/releases/v11.3.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.4.0.md b/docs/releases/v11.4.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.5.0.md b/docs/releases/v11.5.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.6.0.md b/docs/releases/v11.6.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.6.1.md b/docs/releases/v11.6.1.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.6.2.md b/docs/releases/v11.6.2.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.7.0.md b/docs/releases/v11.7.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.8.0.md b/docs/releases/v11.8.0.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.8.1.md b/docs/releases/v11.8.1.md old mode 100644 new mode 100755 diff --git a/docs/releases/v11.9.0.md b/docs/releases/v11.9.0.md old mode 100644 new mode 100755 diff --git a/docs/src_diagram.png b/docs/src_diagram.png old mode 100644 new mode 100755 diff --git a/eslint-result.json b/eslint-result.json old mode 100644 new mode 100755 diff --git a/eslint.config.js b/eslint.config.js old mode 100644 new mode 100755 diff --git a/package-lock.json b/package-lock.json old mode 100644 new mode 100755 diff --git a/package.json b/package.json old mode 100644 new mode 100755 diff --git a/scripts-src/amo-markdown.ts b/scripts-src/amo-markdown.ts old mode 100644 new mode 100755 diff --git a/scripts-src/build-languages.ts b/scripts-src/build-languages.ts old mode 100644 new mode 100755 diff --git a/scripts-src/build.ts b/scripts-src/build.ts old mode 100644 new mode 100755 diff --git a/scripts-src/index.ts b/scripts-src/index.ts old mode 100644 new mode 100755 diff --git a/scripts-src/language-codes.json b/scripts-src/language-codes.json old mode 100644 new mode 100755 diff --git a/scripts-src/test.ts b/scripts-src/test.ts old mode 100644 new mode 100755 diff --git a/scripts-src/tsconfig.json b/scripts-src/tsconfig.json old mode 100644 new mode 100755 diff --git a/social-image.png b/social-image.png old mode 100644 new mode 100755 diff --git a/src/api/ApiDefinitions.ts b/src/api/ApiDefinitions.ts old mode 100644 new mode 100755 diff --git a/src/background/background-activated-tabs.ts b/src/background/background-activated-tabs.ts old mode 100644 new mode 100755 diff --git a/src/background/background-autodiscard.ts b/src/background/background-autodiscard.ts old mode 100644 new mode 100755 diff --git a/src/background/background-closed-tabs.ts b/src/background/background-closed-tabs.ts old mode 100644 new mode 100755 diff --git a/src/background/background-commands.ts b/src/background/background-commands.ts old mode 100644 new mode 100755 index 7de2e397..7116a4ee --- a/src/background/background-commands.ts +++ b/src/background/background-commands.ts @@ -22,8 +22,10 @@ import browser from 'webextension-polyfill'; import { ExtensionPageService } from '../lib/ExtensionPageService'; +import { TemporaryContainerService } from '../lib/tabGroups/TemporaryContainerService'; const extensionPageService = ExtensionPageService.getInstance(); +const temporaryContainerService = TemporaryContainerService.getInstance(); browser.commands.onCommand.addListener(async (command) => { try { @@ -33,6 +35,21 @@ browser.commands.onCommand.addListener(async (command) => { break; } + case 'create_temporary_container': { + await temporaryContainerService.createTemporaryContainer(); + break; + } + + case 'open_new_tab_same_container': { + const tabs = await browser.tabs.query({ active: true, currentWindow: true }); + const activeTab = tabs[0]; + await browser.tabs.create({ + windowId: activeTab?.windowId ?? browser.windows.WINDOW_ID_CURRENT, + cookieStoreId: activeTab?.cookieStoreId, + }); + break; + } + case 'open_settings_view': { await extensionPageService.open(ExtensionPageService.OPTIONS); break; diff --git a/src/background/background-container-observer.ts b/src/background/background-container-observer.ts old mode 100644 new mode 100755 diff --git a/src/background/background-content-script-registrar.ts b/src/background/background-content-script-registrar.ts old mode 100644 new mode 100755 diff --git a/src/background/background-content-script-responder.ts b/src/background/background-content-script-responder.ts old mode 100644 new mode 100755 diff --git a/src/background/background-created-tab.ts b/src/background/background-created-tab.ts old mode 100644 new mode 100755 diff --git a/src/background/background-index-tab.ts b/src/background/background-index-tab.ts old mode 100644 new mode 100755 diff --git a/src/background/background-install-handler.ts b/src/background/background-install-handler.ts old mode 100644 new mode 100755 diff --git a/src/background/background-menus.ts b/src/background/background-menus.ts old mode 100644 new mode 100755 diff --git a/src/background/background-omnibox.ts b/src/background/background-omnibox.ts old mode 100644 new mode 100755 diff --git a/src/background/background-proxy.ts b/src/background/background-proxy.ts old mode 100644 new mode 100755 diff --git a/src/background/background-redirector.ts b/src/background/background-redirector.ts old mode 100644 new mode 100755 diff --git a/src/background/background-set-header.ts b/src/background/background-set-header.ts old mode 100644 new mode 100755 diff --git a/src/background/background-storage-observer.ts b/src/background/background-storage-observer.ts old mode 100644 new mode 100755 diff --git a/src/background/background-sync.ts b/src/background/background-sync.ts old mode 100644 new mode 100755 diff --git a/src/background/background-tab-lifecycle.ts b/src/background/background-tab-lifecycle.ts old mode 100644 new mode 100755 diff --git a/src/background/background-tab-sorter.ts b/src/background/background-tab-sorter.ts old mode 100644 new mode 100755 diff --git a/src/background/background-update-checker.ts b/src/background/background-update-checker.ts old mode 100644 new mode 100755 diff --git a/src/background/background-url-change.ts b/src/background/background-url-change.ts old mode 100644 new mode 100755 diff --git a/src/background/background.html b/src/background/background.html old mode 100644 new mode 100755 diff --git a/src/background/background.ts b/src/background/background.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/BeforeRequestHandler.ts b/src/background/includes/BeforeRequestHandler.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/InitialWindowsService.ts b/src/background/includes/InitialWindowsService.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/TabState.ts b/src/background/includes/TabState.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/TabStateStore.ts b/src/background/includes/TabStateStore.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/active-container.ts b/src/background/includes/active-container.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/alarms.ts b/src/background/includes/alarms.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/ext-content.ts b/src/background/includes/ext-content.ts old mode 100644 new mode 100755 diff --git a/src/background/includes/extension-version-migrations.ts b/src/background/includes/extension-version-migrations.ts old mode 100644 new mode 100755 diff --git a/src/components/container-color-picker.ts b/src/components/container-color-picker.ts old mode 100644 new mode 100755 diff --git a/src/components/container-editor.ts b/src/components/container-editor.ts old mode 100644 new mode 100755 diff --git a/src/components/container-icon-picker.ts b/src/components/container-icon-picker.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-bottom-navigation.ts b/src/components/ctg/ctg-bottom-navigation.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-drawer.ts b/src/components/ctg/ctg-drawer.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-fragment.ts b/src/components/ctg/ctg-fragment.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-frame-layout.ts b/src/components/ctg/ctg-frame-layout.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-menu-item.ts b/src/components/ctg/ctg-menu-item.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-top-bar.ts b/src/components/ctg/ctg-top-bar.ts old mode 100644 new mode 100755 diff --git a/src/components/ctg/ctg-vertical-layout.ts b/src/components/ctg/ctg-vertical-layout.ts old mode 100644 new mode 100755 diff --git a/src/components/help-banner.ts b/src/components/help-banner.ts old mode 100644 new mode 100755 diff --git a/src/components/menulist-container.ts b/src/components/menulist-container.ts old mode 100644 new mode 100755 diff --git a/src/components/menulist-site.ts b/src/components/menulist-site.ts old mode 100644 new mode 100755 diff --git a/src/components/menulist-supergroup.ts b/src/components/menulist-supergroup.ts old mode 100644 new mode 100755 diff --git a/src/components/menulist-tab.ts b/src/components/menulist-tab.ts old mode 100644 new mode 100755 diff --git a/src/components/menulist-tag.ts b/src/components/menulist-tag.ts old mode 100644 new mode 100755 diff --git a/src/components/menulist-window.ts b/src/components/menulist-window.ts old mode 100644 new mode 100755 diff --git a/src/components/modal-confirm.ts b/src/components/modal-confirm.ts old mode 100644 new mode 100755 diff --git a/src/components/modal-frame.ts b/src/components/modal-frame.ts old mode 100644 new mode 100755 diff --git a/src/components/modal-menu.ts b/src/components/modal-menu.ts old mode 100644 new mode 100755 diff --git a/src/components/modal-move-group.ts b/src/components/modal-move-group.ts old mode 100644 new mode 100755 diff --git a/src/components/modal-set-tag.ts b/src/components/modal-set-tag.ts old mode 100644 new mode 100755 diff --git a/src/components/panel-windows.ts b/src/components/panel-windows.ts old mode 100644 new mode 100755 diff --git a/src/components/panorama-container.ts b/src/components/panorama-container.ts old mode 100644 new mode 100755 diff --git a/src/components/panorama-tab.ts b/src/components/panorama-tab.ts old mode 100644 new mode 100755 diff --git a/src/components/proxy-editor.ts b/src/components/proxy-editor.ts old mode 100644 new mode 100755 diff --git a/src/components/proxy-manager.ts b/src/components/proxy-manager.ts old mode 100644 new mode 100755 diff --git a/src/components/supergroup-editor.ts b/src/components/supergroup-editor.ts old mode 100644 new mode 100755 diff --git a/src/components/tab-group-listing.ts b/src/components/tab-group-listing.ts old mode 100644 new mode 100755 diff --git a/src/components/tab-group-overrides.ts b/src/components/tab-group-overrides.ts old mode 100644 new mode 100755 diff --git a/src/components/tab-group-proxy.ts b/src/components/tab-group-proxy.ts old mode 100644 new mode 100755 diff --git a/src/components/tab-group-sorter.ts b/src/components/tab-group-sorter.ts old mode 100644 new mode 100755 diff --git a/src/components/tag-editor.ts b/src/components/tag-editor.ts old mode 100644 new mode 100755 diff --git a/src/config/config.ts b/src/config/config.ts old mode 100644 new mode 100755 diff --git a/src/content/content-interfaces.ts b/src/content/content-interfaces.ts old mode 100644 new mode 100755 diff --git a/src/content/ext/directory-listing/directory-listing.ts b/src/content/ext/directory-listing/directory-listing.ts old mode 100644 new mode 100755 diff --git a/src/content/ext/list.ts b/src/content/ext/list.ts old mode 100644 new mode 100755 diff --git a/src/content/ext/once-guard.ts b/src/content/ext/once-guard.ts old mode 100644 new mode 100755 diff --git a/src/content/overrides/LanguageStore.ts b/src/content/overrides/LanguageStore.ts old mode 100644 new mode 100755 diff --git a/src/content/overrides/content-localstorage.ts b/src/content/overrides/content-localstorage.ts old mode 100644 new mode 100755 diff --git a/src/content/overrides/content.ts b/src/content/overrides/content.ts old mode 100644 new mode 100755 diff --git a/src/css/theme.css b/src/css/theme.css old mode 100644 new mode 100755 diff --git a/src/defs.ts b/src/defs.ts old mode 100644 new mode 100755 diff --git a/src/globals.d.ts b/src/globals.d.ts old mode 100644 new mode 100755 diff --git a/src/language-and-countries.csv b/src/language-and-countries.csv old mode 100644 new mode 100755 diff --git a/src/legacy-lib/colors/CssColor.ts b/src/legacy-lib/colors/CssColor.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/colors/Srgb.ts b/src/legacy-lib/colors/Srgb.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/colors/Xyz.ts b/src/legacy-lib/colors/Xyz.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/cookies/ContentStorageStatistics.ts b/src/legacy-lib/cookies/ContentStorageStatistics.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/cookies/CookieProvider.ts b/src/legacy-lib/cookies/CookieProvider.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/modules/IndexTab.ts b/src/legacy-lib/modules/IndexTab.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/modules/containers.ts b/src/legacy-lib/modules/containers.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/modules/i18n.ts b/src/legacy-lib/modules/i18n.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/tabs/WindowService.ts b/src/legacy-lib/tabs/WindowService.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/themes/DarkThemeMonitor.ts b/src/legacy-lib/themes/DarkThemeMonitor.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/themes/Theme.ts b/src/legacy-lib/themes/Theme.ts old mode 100644 new mode 100755 diff --git a/src/legacy-lib/themes/ThemeService.ts b/src/legacy-lib/themes/ThemeService.ts old mode 100644 new mode 100755 diff --git a/src/lib/BroadcastTopic.ts b/src/lib/BroadcastTopic.ts old mode 100644 new mode 100755 diff --git a/src/lib/DateFormatService.ts b/src/lib/DateFormatService.ts old mode 100644 new mode 100755 diff --git a/src/lib/DebuggingInformationService.ts b/src/lib/DebuggingInformationService.ts old mode 100644 new mode 100755 diff --git a/src/lib/DomFactory.ts b/src/lib/DomFactory.ts old mode 100644 new mode 100755 diff --git a/src/lib/ElapsedTimeService.ts b/src/lib/ElapsedTimeService.ts old mode 100644 new mode 100755 diff --git a/src/lib/ExtensionListingService.ts b/src/lib/ExtensionListingService.ts old mode 100644 new mode 100755 diff --git a/src/lib/ExtensionPageService.ts b/src/lib/ExtensionPageService.ts old mode 100644 new mode 100755 diff --git a/src/lib/ExtensionVersion.ts b/src/lib/ExtensionVersion.ts old mode 100644 new mode 100755 diff --git a/src/lib/ExtensionVersionMigrationRegistry.ts b/src/lib/ExtensionVersionMigrationRegistry.ts old mode 100644 new mode 100755 diff --git a/src/lib/ExternalServiceProvider.ts b/src/lib/ExternalServiceProvider.ts old mode 100644 new mode 100755 diff --git a/src/lib/PageLoaderService.ts b/src/lib/PageLoaderService.ts old mode 100644 new mode 100755 diff --git a/src/lib/RandomIdService.ts b/src/lib/RandomIdService.ts old mode 100644 new mode 100755 diff --git a/src/lib/SenityCheckService.ts b/src/lib/SenityCheckService.ts old mode 100644 new mode 100755 diff --git a/src/lib/ServiceRegistry.ts b/src/lib/ServiceRegistry.ts old mode 100644 new mode 100755 diff --git a/src/lib/SpinnerService.ts b/src/lib/SpinnerService.ts old mode 100644 new mode 100755 diff --git a/src/lib/StartupService.ts b/src/lib/StartupService.ts old mode 100644 new mode 100755 diff --git a/src/lib/TabIconService.ts b/src/lib/TabIconService.ts old mode 100644 new mode 100755 diff --git a/src/lib/UrlRegistrationService.ts b/src/lib/UrlRegistrationService.ts old mode 100644 new mode 100755 diff --git a/src/lib/browserAction/BrowserActionService.ts b/src/lib/browserAction/BrowserActionService.ts old mode 100644 new mode 100755 diff --git a/src/lib/config/ConfigurationOption.ts b/src/lib/config/ConfigurationOption.ts old mode 100644 new mode 100755 diff --git a/src/lib/config/ConfigurationSerializer.ts b/src/lib/config/ConfigurationSerializer.ts old mode 100644 new mode 100755 diff --git a/src/lib/config/FpiService.ts b/src/lib/config/FpiService.ts old mode 100644 new mode 100755 diff --git a/src/lib/config/StorageConfigurationOption.ts b/src/lib/config/StorageConfigurationOption.ts old mode 100644 new mode 100755 diff --git a/src/lib/console/CompatConsole.ts b/src/lib/console/CompatConsole.ts old mode 100644 new mode 100755 diff --git a/src/lib/console/ConsoleFormatter.ts b/src/lib/console/ConsoleFormatter.ts old mode 100644 new mode 100755 diff --git a/src/lib/console/ConsoleHistoryService.ts b/src/lib/console/ConsoleHistoryService.ts old mode 100644 new mode 100755 diff --git a/src/lib/console/ConsoleService.ts b/src/lib/console/ConsoleService.ts old mode 100644 new mode 100755 diff --git a/src/lib/cookies/CookieCopyService.ts b/src/lib/cookies/CookieCopyService.ts old mode 100644 new mode 100755 diff --git a/src/lib/cookies/SyncedCookie.ts b/src/lib/cookies/SyncedCookie.ts old mode 100644 new mode 100755 diff --git a/src/lib/frontend/Store.ts b/src/lib/frontend/Store.ts old mode 100644 new mode 100755 diff --git a/src/lib/history/ContainerHistoryService.ts b/src/lib/history/ContainerHistoryService.ts old mode 100644 new mode 100755 diff --git a/src/lib/history/InstallationHistoryService.ts b/src/lib/history/InstallationHistoryService.ts old mode 100644 new mode 100755 diff --git a/src/lib/history/PerformanceHistoryService.ts b/src/lib/history/PerformanceHistoryService.ts old mode 100644 new mode 100755 diff --git a/src/lib/menus/MenuItem.ts b/src/lib/menus/MenuItem.ts old mode 100644 new mode 100755 diff --git a/src/lib/menus/PopupTabContextMenuItem.ts b/src/lib/menus/PopupTabContextMenuItem.ts old mode 100644 new mode 100755 diff --git a/src/lib/notifications/NotificationChannel.ts b/src/lib/notifications/NotificationChannel.ts old mode 100644 new mode 100755 diff --git a/src/lib/notifications/NotificationService.ts b/src/lib/notifications/NotificationService.ts old mode 100644 new mode 100755 diff --git a/src/lib/overrides/AbstractPerContainerSettings.ts b/src/lib/overrides/AbstractPerContainerSettings.ts old mode 100644 new mode 100755 diff --git a/src/lib/overrides/ChromiumReleaseService.ts b/src/lib/overrides/ChromiumReleaseService.ts old mode 100644 new mode 100755 diff --git a/src/lib/overrides/LanguageSettings.ts b/src/lib/overrides/LanguageSettings.ts old mode 100644 new mode 100755 diff --git a/src/lib/overrides/PerContainerSettings.ts b/src/lib/overrides/PerContainerSettings.ts old mode 100644 new mode 100755 diff --git a/src/lib/overrides/UaDataService.ts b/src/lib/overrides/UaDataService.ts old mode 100644 new mode 100755 diff --git a/src/lib/overrides/UserAgentSettings.ts b/src/lib/overrides/UserAgentSettings.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/BuildMetadataService.ts b/src/lib/package/BuildMetadataService.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/DirectoryListingParser.ts b/src/lib/package/DirectoryListingParser.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/DirectoryListingService.ts b/src/lib/package/DirectoryListingService.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/PackageDirectory.ts b/src/lib/package/PackageDirectory.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/PackageInformation.ts b/src/lib/package/PackageInformation.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/PackageInformationService.ts b/src/lib/package/PackageInformationService.ts old mode 100644 new mode 100755 diff --git a/src/lib/package/PackageIntegrityService.ts b/src/lib/package/PackageIntegrityService.ts old mode 100644 new mode 100755 diff --git a/src/lib/proxies/ProxyInfo.ts b/src/lib/proxies/ProxyInfo.ts old mode 100644 new mode 100755 diff --git a/src/lib/proxies/ProxyPreset.ts b/src/lib/proxies/ProxyPreset.ts old mode 100644 new mode 100755 diff --git a/src/lib/proxies/ProxyPresetStore.ts b/src/lib/proxies/ProxyPresetStore.ts old mode 100644 new mode 100755 diff --git a/src/lib/proxies/ProxySettings.ts b/src/lib/proxies/ProxySettings.ts old mode 100644 new mode 100755 diff --git a/src/lib/proxies/ProxyType.ts b/src/lib/proxies/ProxyType.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/ActiveContainerBatchOperation.ts b/src/lib/states/ActiveContainerBatchOperation.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/ActiveContainerService.ts b/src/lib/states/ActiveContainerService.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/BrowserStateDao.ts b/src/lib/states/BrowserStateDao.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/BrowserStateService.ts b/src/lib/states/BrowserStateService.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/BrowserStateStore.ts b/src/lib/states/BrowserStateStore.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/DisplayedContainerDao.ts b/src/lib/states/DisplayedContainerDao.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/OpenTabsService.ts b/src/lib/states/OpenTabsService.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/TabDao.ts b/src/lib/states/TabDao.ts old mode 100644 new mode 100755 diff --git a/src/lib/states/WindowStateDao.ts b/src/lib/states/WindowStateDao.ts old mode 100644 new mode 100755 diff --git a/src/lib/storage/CachedStorageItem.ts b/src/lib/storage/CachedStorageItem.ts old mode 100644 new mode 100755 diff --git a/src/lib/storage/PrefixStorageItems.ts b/src/lib/storage/PrefixStorageItems.ts old mode 100644 new mode 100755 diff --git a/src/lib/storage/ReadCachedStorageItem.ts b/src/lib/storage/ReadCachedStorageItem.ts old mode 100644 new mode 100755 diff --git a/src/lib/storage/SetStorage.ts b/src/lib/storage/SetStorage.ts old mode 100644 new mode 100755 diff --git a/src/lib/sync/ContainerSyncService.ts b/src/lib/sync/ContainerSyncService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/ContainerCreatorService.ts b/src/lib/tabGroups/ContainerCreatorService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/ContainerTabOpenerService.ts b/src/lib/tabGroups/ContainerTabOpenerService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/ContainerVisibilityService.ts b/src/lib/tabGroups/ContainerVisibilityService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/ContextualIdentityService.ts b/src/lib/tabGroups/ContextualIdentityService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/CookieStoreService.ts b/src/lib/tabGroups/CookieStoreService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/DisplayedContainerService.ts b/src/lib/tabGroups/DisplayedContainerService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/OpenTabState.ts b/src/lib/tabGroups/OpenTabState.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/SupergroupService.ts b/src/lib/tabGroups/SupergroupService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TabGroupAttributes.ts b/src/lib/tabGroups/TabGroupAttributes.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TabGroupDirectory.ts b/src/lib/tabGroups/TabGroupDirectory.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TabGroupDirectorySnapshot.ts b/src/lib/tabGroups/TabGroupDirectorySnapshot.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TabGroupOptionDirectory.ts b/src/lib/tabGroups/TabGroupOptionDirectory.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TabGroupService.ts b/src/lib/tabGroups/TabGroupService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TabSortingProvider.ts b/src/lib/tabGroups/TabSortingProvider.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/TemporaryContainerService.ts b/src/lib/tabGroups/TemporaryContainerService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/WindowContainerHidingHelper.ts b/src/lib/tabGroups/WindowContainerHidingHelper.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/tags/TabAttributeMap.ts b/src/lib/tabGroups/tags/TabAttributeMap.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/tags/TabAttributeTagId.ts b/src/lib/tabGroups/tags/TabAttributeTagId.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/tags/TagDirectory.ts b/src/lib/tabGroups/tags/TagDirectory.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/tags/TagDirectorySnapshot.ts b/src/lib/tabGroups/tags/TagDirectorySnapshot.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/tags/TagService.ts b/src/lib/tabGroups/tags/TagService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabGroups/tags/TagType.ts b/src/lib/tabGroups/tags/TagType.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/BatchedTabRemovalHandler.ts b/src/lib/tabs/BatchedTabRemovalHandler.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/CookieStoreTabMap.ts b/src/lib/tabs/CookieStoreTabMap.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/IndexTabService.ts b/src/lib/tabs/IndexTabService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/NewTabPageService.ts b/src/lib/tabs/NewTabPageService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/SupergroupTabGroupFilter.ts b/src/lib/tabs/SupergroupTabGroupFilter.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/TabConverterService.ts b/src/lib/tabs/TabConverterService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/TabPreviewService.ts b/src/lib/tabs/TabPreviewService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/TabQueryService.ts b/src/lib/tabs/TabQueryService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/TabService.ts b/src/lib/tabs/TabService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/TabSortingService.ts b/src/lib/tabs/TabSortingService.ts old mode 100644 new mode 100755 diff --git a/src/lib/tabs/TabUrlService.ts b/src/lib/tabs/TabUrlService.ts old mode 100644 new mode 100755 diff --git a/src/lib/windows/PrivateWindowService.ts b/src/lib/windows/PrivateWindowService.ts old mode 100644 new mode 100755 diff --git a/src/lib/windows/WindowTabCountService.ts b/src/lib/windows/WindowTabCountService.ts old mode 100644 new mode 100755 diff --git a/src/manifest.json b/src/manifest.json old mode 100644 new mode 100755 index a5beb4ed..a05c791a --- a/src/manifest.json +++ b/src/manifest.json @@ -4,10 +4,14 @@ "version": "__PLACEHOLDER__", "browser_specific_settings": { "gecko": { - "id": "tab-array@menhera.org", + "id": "tab-array_fork@menhera.org", + "data_collection_permissions": { + "required": ["none"] + }, "strict_min_version": "102.0" } }, + "default_locale": "en", "author": "Menhera.org", "homepage_url": "https://github.com/menhera-org/TabArray", @@ -114,6 +118,18 @@ }, "description": "__MSG_menuItemSites__" }, + "create_temporary_container": { + "suggested_key": { + "default": "Ctrl+Alt+4" + }, + "description": "__MSG_commandCreateTemporaryContainer__" + }, + "open_new_tab_same_container": { + "suggested_key": { + "default": "Ctrl+Alt+6" + }, + "description": "__MSG_commandNewTabSameContainer__" + }, "open_settings_view": { "suggested_key": { "default": "Ctrl+Alt+5" diff --git a/src/pages/cookies/cookies.css b/src/pages/cookies/cookies.css old mode 100644 new mode 100755 diff --git a/src/pages/cookies/cookies.html b/src/pages/cookies/cookies.html old mode 100644 new mode 100755 diff --git a/src/pages/cookies/cookies.ts b/src/pages/cookies/cookies.ts old mode 100644 new mode 100755 diff --git a/src/pages/debugging/debugging.css b/src/pages/debugging/debugging.css old mode 100644 new mode 100755 diff --git a/src/pages/debugging/debugging.html b/src/pages/debugging/debugging.html old mode 100644 new mode 100755 diff --git a/src/pages/debugging/debugging.ts b/src/pages/debugging/debugging.ts old mode 100644 new mode 100755 diff --git a/src/pages/debugging/fragments/FilesFragmentBuilder.ts b/src/pages/debugging/fragments/FilesFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/debugging/fragments/InstallationHistoryFragmentBuilder.ts b/src/pages/debugging/fragments/InstallationHistoryFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/debugging/fragments/LogFragmentBuilder.ts b/src/pages/debugging/fragments/LogFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/debugging/fragments/PerforamanceFragmentBuilder.ts b/src/pages/debugging/fragments/PerforamanceFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/debugging/fragments/TabCountFragmentBuilder.ts b/src/pages/debugging/fragments/TabCountFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/index/index-tab.html b/src/pages/index/index-tab.html old mode 100644 new mode 100755 diff --git a/src/pages/index/index-tab.ts b/src/pages/index/index-tab.ts old mode 100644 new mode 100755 diff --git a/src/pages/navigation/confirm.html b/src/pages/navigation/confirm.html old mode 100644 new mode 100755 diff --git a/src/pages/navigation/navigation-components.tsx b/src/pages/navigation/navigation-components.tsx old mode 100644 new mode 100755 diff --git a/src/pages/navigation/navigation-elements.ts b/src/pages/navigation/navigation-elements.ts old mode 100644 new mode 100755 diff --git a/src/pages/navigation/navigation-i18n.ts b/src/pages/navigation/navigation-i18n.ts old mode 100644 new mode 100755 diff --git a/src/pages/navigation/navigation-renderer.ts b/src/pages/navigation/navigation-renderer.ts old mode 100644 new mode 100755 diff --git a/src/pages/navigation/navigation.css b/src/pages/navigation/navigation.css old mode 100644 new mode 100755 diff --git a/src/pages/navigation/open-container.html b/src/pages/navigation/open-container.html old mode 100644 new mode 100755 diff --git a/src/pages/navigation/select-container.tsx b/src/pages/navigation/select-container.tsx old mode 100644 new mode 100755 diff --git a/src/pages/options/options-i18n.ts b/src/pages/options/options-i18n.ts old mode 100644 new mode 100755 diff --git a/src/pages/options/options.css b/src/pages/options/options.css old mode 100644 new mode 100755 diff --git a/src/pages/options/options.html b/src/pages/options/options.html old mode 100644 new mode 100755 diff --git a/src/pages/options/options.ts b/src/pages/options/options.ts old mode 100644 new mode 100755 diff --git a/src/pages/page-action/page-action.css b/src/pages/page-action/page-action.css old mode 100644 new mode 100755 diff --git a/src/pages/page-action/page-action.html b/src/pages/page-action/page-action.html old mode 100644 new mode 100755 diff --git a/src/pages/page-action/page-action.ts b/src/pages/page-action/page-action.ts old mode 100644 new mode 100755 diff --git a/src/pages/panorama/PanoramaStateStore.ts b/src/pages/panorama/PanoramaStateStore.ts old mode 100644 new mode 100755 diff --git a/src/pages/panorama/panorama.css b/src/pages/panorama/panorama.css old mode 100644 new mode 100755 diff --git a/src/pages/panorama/panorama.html b/src/pages/panorama/panorama.html old mode 100644 new mode 100755 diff --git a/src/pages/panorama/panorama.ts b/src/pages/panorama/panorama.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/GlobalMenuItems.ts b/src/pages/popup-v2/GlobalMenuItems.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/PopupCommandHandler.ts b/src/pages/popup-v2/PopupCommandHandler.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/PopupFocusHandlers.ts b/src/pages/popup-v2/PopupFocusHandlers.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/PopupRendererService.ts b/src/pages/popup-v2/PopupRendererService.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/AbstractFragmentBuilder.ts b/src/pages/popup-v2/fragments/AbstractFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/ContainerDetailsFragmentBuilder.ts b/src/pages/popup-v2/fragments/ContainerDetailsFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/ContainersFragmentBuilder.ts b/src/pages/popup-v2/fragments/ContainersFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/FragmentBuilder.ts b/src/pages/popup-v2/fragments/FragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/HelpFragmentBuilder.ts b/src/pages/popup-v2/fragments/HelpFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/SimpleFragmentBuilder.ts b/src/pages/popup-v2/fragments/SimpleFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/SiteDetailsFragmentBuilder.ts b/src/pages/popup-v2/fragments/SiteDetailsFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/SitesFragmentBuilder.ts b/src/pages/popup-v2/fragments/SitesFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/fragments/WindowsFragmentBuilder.ts b/src/pages/popup-v2/fragments/WindowsFragmentBuilder.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/legacy/PopupCurrentWindowRenderer.ts b/src/pages/popup-v2/legacy/PopupCurrentWindowRenderer.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/legacy/PopupModalRenderer.ts b/src/pages/popup-v2/legacy/PopupModalRenderer.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/legacy/PopupRenderer.ts b/src/pages/popup-v2/legacy/PopupRenderer.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/legacy/PopupThemes.ts b/src/pages/popup-v2/legacy/PopupThemes.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/legacy/PopupUtils.ts b/src/pages/popup-v2/legacy/PopupUtils.ts old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/popup-v2.css b/src/pages/popup-v2/popup-v2.css old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/popup-v2.html b/src/pages/popup-v2/popup-v2.html old mode 100644 new mode 100755 diff --git a/src/pages/popup-v2/popup-v2.ts b/src/pages/popup-v2/popup-v2.ts old mode 100644 new mode 100755 diff --git a/src/release.json b/src/release.json old mode 100644 new mode 100755 diff --git a/static/LICENSE b/static/LICENSE old mode 100644 new mode 100755 diff --git a/static/_locales/cs/messages.json b/static/_locales/cs/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/de/messages.json b/static/_locales/de/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/en/messages.json b/static/_locales/en/messages.json old mode 100644 new mode 100755 index 5374d4f4..8186ba5f --- a/static/_locales/en/messages.json +++ b/static/_locales/en/messages.json @@ -522,6 +522,14 @@ "message": "New Temporary Container", "description": "Button to open a new temporary container." }, + "commandCreateTemporaryContainer": { + "message": "Create Temporary Container", + "description": "Keyboard shortcut to create a new temporary container." + }, + "commandNewTabSameContainer": { + "message": "Open New Tab in Current Container", + "description": "Keyboard shortcut to open a new tab in the current tab's container." + }, "focusToThisContainer": { "message": "Focus to this container", "description": "Button to focus to this container." diff --git a/static/_locales/eo/messages.json b/static/_locales/eo/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/es-ES/messages.json b/static/_locales/es-ES/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/fr/messages.json b/static/_locales/fr/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/gl/messages.json b/static/_locales/gl/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/ia/messages.json b/static/_locales/ia/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/ja/messages.json b/static/_locales/ja/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/pt/messages.json b/static/_locales/pt/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/pt_BR/messages.json b/static/_locales/pt_BR/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/ru/messages.json b/static/_locales/ru/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/ta/messages.json b/static/_locales/ta/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/uk/messages.json b/static/_locales/uk/messages.json old mode 100644 new mode 100755 diff --git a/static/_locales/zh_Hans/messages.json b/static/_locales/zh_Hans/messages.json old mode 100644 new mode 100755 diff --git a/static/css/components/container-editor.css b/static/css/components/container-editor.css old mode 100644 new mode 100755 diff --git a/static/css/components/ctg/ctg-bottom-navigation.css b/static/css/components/ctg/ctg-bottom-navigation.css old mode 100644 new mode 100755 diff --git a/static/css/components/ctg/ctg-drawer.css b/static/css/components/ctg/ctg-drawer.css old mode 100644 new mode 100755 diff --git a/static/css/components/ctg/ctg-frame-layout.css b/static/css/components/ctg/ctg-frame-layout.css old mode 100644 new mode 100755 diff --git a/static/css/components/ctg/ctg-menu-item.css b/static/css/components/ctg/ctg-menu-item.css old mode 100644 new mode 100755 diff --git a/static/css/components/ctg/ctg-top-bar.css b/static/css/components/ctg/ctg-top-bar.css old mode 100644 new mode 100755 diff --git a/static/css/components/ctg/ctg-vertical-layout.css b/static/css/components/ctg/ctg-vertical-layout.css old mode 100644 new mode 100755 diff --git a/static/css/components/help-banner.css b/static/css/components/help-banner.css old mode 100644 new mode 100755 diff --git a/static/css/components/menulist-container.css b/static/css/components/menulist-container.css old mode 100644 new mode 100755 diff --git a/static/css/components/menulist-site.css b/static/css/components/menulist-site.css old mode 100644 new mode 100755 diff --git a/static/css/components/menulist-supergroup.css b/static/css/components/menulist-supergroup.css old mode 100644 new mode 100755 diff --git a/static/css/components/menulist-tab.css b/static/css/components/menulist-tab.css old mode 100644 new mode 100755 diff --git a/static/css/components/menulist-tag.css b/static/css/components/menulist-tag.css old mode 100644 new mode 100755 diff --git a/static/css/components/modal-confirm.css b/static/css/components/modal-confirm.css old mode 100644 new mode 100755 diff --git a/static/css/components/modal-frame.css b/static/css/components/modal-frame.css old mode 100644 new mode 100755 diff --git a/static/css/components/modal-menu.css b/static/css/components/modal-menu.css old mode 100644 new mode 100755 diff --git a/static/css/components/panel-windows.css b/static/css/components/panel-windows.css old mode 100644 new mode 100755 diff --git a/static/css/components/panorama-tab.css b/static/css/components/panorama-tab.css old mode 100644 new mode 100755 diff --git a/static/css/components/proxy-editor.css b/static/css/components/proxy-editor.css old mode 100644 new mode 100755 diff --git a/static/css/components/proxy-manager.css b/static/css/components/proxy-manager.css old mode 100644 new mode 100755 diff --git a/static/css/components/supergroup-editor.css b/static/css/components/supergroup-editor.css old mode 100644 new mode 100755 diff --git a/static/css/components/tab-group-listing.css b/static/css/components/tab-group-listing.css old mode 100644 new mode 100755 diff --git a/static/css/components/tab-group-overrides.css b/static/css/components/tab-group-overrides.css old mode 100644 new mode 100755 diff --git a/static/css/components/tab-group-proxy.css b/static/css/components/tab-group-proxy.css old mode 100644 new mode 100755 diff --git a/static/css/components/tab-group-sorter.css b/static/css/components/tab-group-sorter.css old mode 100644 new mode 100755 diff --git a/static/css/components/usercontext.css b/static/css/components/usercontext.css old mode 100644 new mode 100755 diff --git a/static/css/theme.css b/static/css/theme.css old mode 100644 new mode 100755 diff --git a/static/i18n-stats/.gitignore b/static/i18n-stats/.gitignore old mode 100644 new mode 100755 diff --git a/static/i18n-stats/cs.json b/static/i18n-stats/cs.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/de.json b/static/i18n-stats/de.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/en.json b/static/i18n-stats/en.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/eo.json b/static/i18n-stats/eo.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/es-ES.json b/static/i18n-stats/es-ES.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/fr.json b/static/i18n-stats/fr.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/gl.json b/static/i18n-stats/gl.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/ia.json b/static/i18n-stats/ia.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/ja.json b/static/i18n-stats/ja.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/pt.json b/static/i18n-stats/pt.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/pt_BR.json b/static/i18n-stats/pt_BR.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/ru.json b/static/i18n-stats/ru.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/ta.json b/static/i18n-stats/ta.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/uk.json b/static/i18n-stats/uk.json old mode 100644 new mode 100755 diff --git a/static/i18n-stats/zh_Hans.json b/static/i18n-stats/zh_Hans.json old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/briefcase.svg b/static/img/contextual-identities/briefcase.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/cart.svg b/static/img/contextual-identities/cart.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/chill.svg b/static/img/contextual-identities/chill.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/circle.svg b/static/img/contextual-identities/circle.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/dollar.svg b/static/img/contextual-identities/dollar.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/fence.svg b/static/img/contextual-identities/fence.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/fingerprint.svg b/static/img/contextual-identities/fingerprint.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/food.svg b/static/img/contextual-identities/food.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/fruit.svg b/static/img/contextual-identities/fruit.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/gift.svg b/static/img/contextual-identities/gift.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/pet.svg b/static/img/contextual-identities/pet.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/tree.svg b/static/img/contextual-identities/tree.svg old mode 100644 new mode 100755 diff --git a/static/img/contextual-identities/vacation.svg b/static/img/contextual-identities/vacation.svg old mode 100644 new mode 100755 diff --git a/static/img/filters.svg b/static/img/filters.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/add.svg b/static/img/firefox-icons/add.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/back.svg b/static/img/firefox-icons/back.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/checkmark-circle-fill.svg b/static/img/firefox-icons/checkmark-circle-fill.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/close.svg b/static/img/firefox-icons/close.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/cookies.svg b/static/img/firefox-icons/cookies.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/defaultFavicon.svg b/static/img/firefox-icons/defaultFavicon.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/defaultPreview.svg b/static/img/firefox-icons/defaultPreview.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/delete.svg b/static/img/firefox-icons/delete.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/developer.svg b/static/img/firefox-icons/developer.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/download.svg b/static/img/firefox-icons/download.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/edit.svg b/static/img/firefox-icons/edit.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/extension.svg b/static/img/firefox-icons/extension.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/folder-add.svg b/static/img/firefox-icons/folder-add.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/folder.svg b/static/img/firefox-icons/folder.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/help.svg b/static/img/firefox-icons/help.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/highlights.svg b/static/img/firefox-icons/highlights.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/menu.svg b/static/img/firefox-icons/menu.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/more.svg b/static/img/firefox-icons/more.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/open-in-new.svg b/static/img/firefox-icons/open-in-new.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/page-vertical.svg b/static/img/firefox-icons/page-vertical.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/performance.svg b/static/img/firefox-icons/performance.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/pin-fill.svg b/static/img/firefox-icons/pin-fill.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/plus.svg b/static/img/firefox-icons/plus.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/private-browsing-icon.svg b/static/img/firefox-icons/private-browsing-icon.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/reload.svg b/static/img/firefox-icons/reload.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/search.svg b/static/img/firefox-icons/search.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/settings.svg b/static/img/firefox-icons/settings.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/sidebars.svg b/static/img/firefox-icons/sidebars.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/tab.svg b/static/img/firefox-icons/tab.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/top-sites.svg b/static/img/firefox-icons/top-sites.svg old mode 100644 new mode 100755 diff --git a/static/img/firefox-icons/window.svg b/static/img/firefox-icons/window.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/arrow_downward.svg b/static/img/material-icons/arrow_downward.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/arrow_upward.svg b/static/img/material-icons/arrow_upward.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/category.svg b/static/img/material-icons/category.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/chevron_right.svg b/static/img/material-icons/chevron_right.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/expand_less.svg b/static/img/material-icons/expand_less.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/expand_more.svg b/static/img/material-icons/expand_more.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/label.svg b/static/img/material-icons/label.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/more_horiz.svg b/static/img/material-icons/more_horiz.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/more_vert.svg b/static/img/material-icons/more_vert.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/new_label.svg b/static/img/material-icons/new_label.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/timelapse.svg b/static/img/material-icons/timelapse.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/unfold_less.svg b/static/img/material-icons/unfold_less.svg old mode 100644 new mode 100755 diff --git a/static/img/material-icons/unfold_more.svg b/static/img/material-icons/unfold_more.svg old mode 100644 new mode 100755 diff --git a/static/img/ring-resize.svg b/static/img/ring-resize.svg old mode 100644 new mode 100755 diff --git a/static/img/shell.svg b/static/img/shell.svg old mode 100644 new mode 100755 diff --git a/static/img/toolbar/toolbar-icon-black.svg b/static/img/toolbar/toolbar-icon-black.svg old mode 100644 new mode 100755 diff --git a/static/img/toolbar/toolbar-icon-white.svg b/static/img/toolbar/toolbar-icon-white.svg old mode 100644 new mode 100755 diff --git a/static/img/transparent.png b/static/img/transparent.png old mode 100644 new mode 100755 diff --git a/static/img/usercontext.svg b/static/img/usercontext.svg old mode 100644 new mode 100755 diff --git a/static/react/react-dom.production.min.js b/static/react/react-dom.production.min.js old mode 100644 new mode 100755 diff --git a/static/react/react.production.min.js b/static/react/react.production.min.js old mode 100644 new mode 100755 diff --git a/tab-button.png b/tab-button.png old mode 100644 new mode 100755 diff --git a/tsconfig.json b/tsconfig.json old mode 100644 new mode 100755