├── .circleci └── config.yml ├── .codeclimate.yml ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .parcelrc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── TabArray.png ├── TabArray.svg ├── docs ├── PRIVACY_POLICY.md ├── addons.mozilla.org │ ├── description.en.md │ └── description.ja.md ├── index.md ├── releases │ ├── v11.0.0.md │ ├── v11.1.0.md │ ├── v11.10.0.md │ ├── v11.2.0.md │ ├── v11.2.1.md │ ├── v11.3.0.md │ ├── v11.4.0.md │ ├── v11.5.0.md │ ├── v11.6.0.md │ ├── v11.6.1.md │ ├── v11.6.2.md │ ├── v11.7.0.md │ ├── v11.8.0.md │ ├── v11.8.1.md │ └── v11.9.0.md └── src_diagram.png ├── eslint.config.js ├── package.json ├── scripts-src ├── amo-markdown.ts ├── build-languages.ts ├── build.ts ├── index.ts ├── language-codes.json ├── test.ts └── tsconfig.json ├── shellscripts ├── build-amo-descriptions.sh └── update-contextual-identities-icons.sh ├── social-image.png ├── src ├── api │ └── ApiDefinitions.ts ├── background │ ├── background-activated-tabs.ts │ ├── background-autodiscard.ts │ ├── background-closed-tabs.ts │ ├── background-commands.ts │ ├── background-container-observer.ts │ ├── background-content-script-registrar.ts │ ├── background-content-script-responder.ts │ ├── background-created-tab.ts │ ├── background-index-tab.ts │ ├── background-install-handler.ts │ ├── background-menus.ts │ ├── background-omnibox.ts │ ├── background-proxy.ts │ ├── background-redirector.ts │ ├── background-set-header.ts │ ├── background-storage-observer.ts │ ├── background-sync.ts │ ├── background-tab-lifecycle.ts │ ├── background-tab-sorter.ts │ ├── background-update-checker.ts │ ├── background-url-change.ts │ ├── background.html │ ├── background.ts │ └── includes │ │ ├── BeforeRequestHandler.ts │ │ ├── InitialWindowsService.ts │ │ ├── TabState.ts │ │ ├── TabStateStore.ts │ │ ├── active-container.ts │ │ ├── alarms.ts │ │ ├── ext-content.ts │ │ └── extension-version-migrations.ts ├── components │ ├── container-color-picker.ts │ ├── container-editor.ts │ ├── container-icon-picker.ts │ ├── ctg │ │ ├── ctg-bottom-navigation.ts │ │ ├── ctg-drawer.ts │ │ ├── ctg-fragment.ts │ │ ├── ctg-frame-layout.ts │ │ ├── ctg-menu-item.ts │ │ ├── ctg-top-bar.ts │ │ └── ctg-vertical-layout.ts │ ├── help-banner.ts │ ├── menulist-container.ts │ ├── menulist-site.ts │ ├── menulist-supergroup.ts │ ├── menulist-tab.ts │ ├── menulist-tag.ts │ ├── menulist-window.ts │ ├── modal-confirm.ts │ ├── modal-frame.ts │ ├── modal-menu.ts │ ├── modal-move-group.ts │ ├── modal-set-tag.ts │ ├── panel-windows.ts │ ├── panorama-container.ts │ ├── panorama-tab.ts │ ├── proxy-editor.ts │ ├── proxy-manager.ts │ ├── supergroup-editor.ts │ ├── tab-group-listing.ts │ ├── tab-group-overrides.ts │ ├── tab-group-proxy.ts │ ├── tab-group-sorter.ts │ └── tag-editor.ts ├── config │ └── config.ts ├── content │ ├── content-interfaces.ts │ ├── ext │ │ ├── directory-listing │ │ │ └── directory-listing.ts │ │ ├── list.ts │ │ └── once-guard.ts │ └── overrides │ │ ├── LanguageStore.ts │ │ ├── content-localstorage.ts │ │ └── content.ts ├── css │ └── theme.css ├── defs.ts ├── globals.d.ts ├── language-and-countries.csv ├── legacy-lib │ ├── colors │ │ ├── CssColor.ts │ │ ├── Srgb.ts │ │ └── Xyz.ts │ ├── cookies │ │ ├── ContentStorageStatistics.ts │ │ └── CookieProvider.ts │ ├── modules │ │ ├── IndexTab.ts │ │ ├── containers.ts │ │ └── i18n.ts │ ├── tabs │ │ └── WindowService.ts │ └── themes │ │ ├── DarkThemeMonitor.ts │ │ ├── Theme.ts │ │ └── ThemeService.ts ├── lib │ ├── BroadcastTopic.ts │ ├── DateFormatService.ts │ ├── DebuggingInformationService.ts │ ├── DomFactory.ts │ ├── ElapsedTimeService.ts │ ├── ExtensionListingService.ts │ ├── ExtensionPageService.ts │ ├── ExtensionVersion.ts │ ├── ExtensionVersionMigrationRegistry.ts │ ├── ExternalServiceProvider.ts │ ├── PageLoaderService.ts │ ├── RandomIdService.ts │ ├── SenityCheckService.ts │ ├── ServiceRegistry.ts │ ├── SpinnerService.ts │ ├── StartupService.ts │ ├── TabIconService.ts │ ├── UrlRegistrationService.ts │ ├── browserAction │ │ └── BrowserActionService.ts │ ├── config │ │ ├── ConfigurationOption.ts │ │ ├── ConfigurationSerializer.ts │ │ ├── FpiService.ts │ │ └── StorageConfigurationOption.ts │ ├── console │ │ ├── CompatConsole.ts │ │ ├── ConsoleFormatter.ts │ │ ├── ConsoleHistoryService.ts │ │ └── ConsoleService.ts │ ├── cookies │ │ ├── CookieCopyService.ts │ │ └── SyncedCookie.ts │ ├── frontend │ │ └── Store.ts │ ├── history │ │ ├── ContainerHistoryService.ts │ │ ├── InstallationHistoryService.ts │ │ └── PerformanceHistoryService.ts │ ├── menus │ │ ├── MenuItem.ts │ │ └── PopupTabContextMenuItem.ts │ ├── notifications │ │ ├── NotificationChannel.ts │ │ └── NotificationService.ts │ ├── overrides │ │ ├── AbstractPerContainerSettings.ts │ │ ├── ChromiumReleaseService.ts │ │ ├── LanguageSettings.ts │ │ ├── PerContainerSettings.ts │ │ ├── UaDataService.ts │ │ └── UserAgentSettings.ts │ ├── package │ │ ├── BuildMetadataService.ts │ │ ├── DirectoryListingParser.ts │ │ ├── DirectoryListingService.ts │ │ ├── PackageDirectory.ts │ │ ├── PackageInformation.ts │ │ ├── PackageInformationService.ts │ │ └── PackageIntegrityService.ts │ ├── proxies │ │ ├── ProxyInfo.ts │ │ ├── ProxyPreset.ts │ │ ├── ProxyPresetStore.ts │ │ ├── ProxySettings.ts │ │ └── ProxyType.ts │ ├── states │ │ ├── ActiveContainerBatchOperation.ts │ │ ├── ActiveContainerService.ts │ │ ├── BrowserStateDao.ts │ │ ├── BrowserStateService.ts │ │ ├── BrowserStateStore.ts │ │ ├── DisplayedContainerDao.ts │ │ ├── OpenTabsService.ts │ │ ├── TabDao.ts │ │ └── WindowStateDao.ts │ ├── storage │ │ ├── CachedStorageItem.ts │ │ ├── PrefixStorageItems.ts │ │ ├── ReadCachedStorageItem.ts │ │ └── SetStorage.ts │ ├── sync │ │ └── ContainerSyncService.ts │ ├── tabGroups │ │ ├── ContainerCreatorService.ts │ │ ├── ContainerTabOpenerService.ts │ │ ├── ContainerVisibilityService.ts │ │ ├── ContextualIdentityService.ts │ │ ├── CookieStoreService.ts │ │ ├── DisplayedContainerService.ts │ │ ├── OpenTabState.ts │ │ ├── SupergroupService.ts │ │ ├── TabGroupAttributes.ts │ │ ├── TabGroupDirectory.ts │ │ ├── TabGroupDirectorySnapshot.ts │ │ ├── TabGroupOptionDirectory.ts │ │ ├── TabGroupService.ts │ │ ├── TabSortingProvider.ts │ │ ├── TemporaryContainerService.ts │ │ ├── WindowContainerHidingHelper.ts │ │ └── tags │ │ │ ├── TabAttributeMap.ts │ │ │ ├── TabAttributeTagId.ts │ │ │ ├── TagDirectory.ts │ │ │ ├── TagDirectorySnapshot.ts │ │ │ ├── TagService.ts │ │ │ └── TagType.ts │ ├── tabs │ │ ├── CookieStoreTabMap.ts │ │ ├── IndexTabService.ts │ │ ├── NewTabPageService.ts │ │ ├── SupergroupTabGroupFilter.ts │ │ ├── TabConverterService.ts │ │ ├── TabPreviewService.ts │ │ ├── TabQueryService.ts │ │ ├── TabService.ts │ │ ├── TabSortingService.ts │ │ └── TabUrlService.ts │ └── windows │ │ ├── PrivateWindowService.ts │ │ └── WindowTabCountService.ts ├── manifest.json ├── pages │ ├── cookies │ │ ├── cookies.css │ │ ├── cookies.html │ │ └── cookies.ts │ ├── debugging │ │ ├── debugging.css │ │ ├── debugging.html │ │ ├── debugging.ts │ │ └── fragments │ │ │ ├── FilesFragmentBuilder.ts │ │ │ ├── InstallationHistoryFragmentBuilder.ts │ │ │ ├── LogFragmentBuilder.ts │ │ │ ├── PerforamanceFragmentBuilder.ts │ │ │ └── TabCountFragmentBuilder.ts │ ├── index │ │ ├── index-tab.html │ │ └── index-tab.ts │ ├── navigation │ │ ├── confirm.html │ │ ├── navigation-components.tsx │ │ ├── navigation-elements.ts │ │ ├── navigation-i18n.ts │ │ ├── navigation-renderer.ts │ │ ├── navigation.css │ │ ├── open-container.html │ │ └── select-container.tsx │ ├── options │ │ ├── options-i18n.ts │ │ ├── options.css │ │ ├── options.html │ │ └── options.ts │ ├── page-action │ │ ├── page-action.css │ │ ├── page-action.html │ │ └── page-action.ts │ ├── panorama │ │ ├── PanoramaStateStore.ts │ │ ├── panorama.css │ │ ├── panorama.html │ │ └── panorama.ts │ └── popup-v2 │ │ ├── GlobalMenuItems.ts │ │ ├── PopupCommandHandler.ts │ │ ├── PopupFocusHandlers.ts │ │ ├── PopupRendererService.ts │ │ ├── fragments │ │ ├── AbstractFragmentBuilder.ts │ │ ├── ContainerDetailsFragmentBuilder.ts │ │ ├── ContainersFragmentBuilder.ts │ │ ├── FragmentBuilder.ts │ │ ├── HelpFragmentBuilder.ts │ │ ├── SimpleFragmentBuilder.ts │ │ ├── SiteDetailsFragmentBuilder.ts │ │ ├── SitesFragmentBuilder.ts │ │ └── WindowsFragmentBuilder.ts │ │ ├── legacy │ │ ├── PopupCurrentWindowRenderer.ts │ │ ├── PopupModalRenderer.ts │ │ ├── PopupRenderer.ts │ │ ├── PopupThemes.ts │ │ └── PopupUtils.ts │ │ ├── popup-v2.css │ │ ├── popup-v2.html │ │ └── popup-v2.ts └── release.json ├── static ├── LICENSE ├── _locales │ ├── cs │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── eo │ │ └── messages.json │ ├── es-ES │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── gl │ │ └── messages.json │ ├── ia │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── pt │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── ta │ │ └── messages.json │ ├── uk │ │ └── messages.json │ └── zh_Hans │ │ └── messages.json ├── css │ ├── components │ │ ├── container-editor.css │ │ ├── ctg │ │ │ ├── ctg-bottom-navigation.css │ │ │ ├── ctg-drawer.css │ │ │ ├── ctg-frame-layout.css │ │ │ ├── ctg-menu-item.css │ │ │ ├── ctg-top-bar.css │ │ │ └── ctg-vertical-layout.css │ │ ├── help-banner.css │ │ ├── menulist-container.css │ │ ├── menulist-site.css │ │ ├── menulist-supergroup.css │ │ ├── menulist-tab.css │ │ ├── menulist-tag.css │ │ ├── modal-confirm.css │ │ ├── modal-frame.css │ │ ├── modal-menu.css │ │ ├── panel-windows.css │ │ ├── panorama-tab.css │ │ ├── proxy-editor.css │ │ ├── proxy-manager.css │ │ ├── supergroup-editor.css │ │ ├── tab-group-listing.css │ │ ├── tab-group-overrides.css │ │ ├── tab-group-proxy.css │ │ ├── tab-group-sorter.css │ │ └── usercontext.css │ └── theme.css ├── i18n-stats │ ├── .gitignore │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── eo.json │ ├── es-ES.json │ ├── fr.json │ ├── gl.json │ ├── ia.json │ ├── ja.json │ ├── pt.json │ ├── pt_BR.json │ ├── ru.json │ ├── ta.json │ ├── uk.json │ └── zh_Hans.json ├── icon.svg ├── img │ ├── contextual-identities │ │ ├── briefcase.svg │ │ ├── cart.svg │ │ ├── chill.svg │ │ ├── circle.svg │ │ ├── dollar.svg │ │ ├── fence.svg │ │ ├── fingerprint.svg │ │ ├── food.svg │ │ ├── fruit.svg │ │ ├── gift.svg │ │ ├── pet.svg │ │ ├── tree.svg │ │ └── vacation.svg │ ├── filters.svg │ ├── firefox-icons │ │ ├── add.svg │ │ ├── back.svg │ │ ├── checkmark-circle-fill.svg │ │ ├── close.svg │ │ ├── cookies.svg │ │ ├── defaultFavicon.svg │ │ ├── defaultPreview.svg │ │ ├── delete.svg │ │ ├── developer.svg │ │ ├── download.svg │ │ ├── edit.svg │ │ ├── extension.svg │ │ ├── folder-add.svg │ │ ├── folder.svg │ │ ├── help.svg │ │ ├── highlights.svg │ │ ├── menu.svg │ │ ├── more.svg │ │ ├── open-in-new.svg │ │ ├── page-vertical.svg │ │ ├── performance.svg │ │ ├── pin-fill.svg │ │ ├── plus.svg │ │ ├── private-browsing-icon.svg │ │ ├── reload.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── sidebars.svg │ │ ├── tab.svg │ │ ├── top-sites.svg │ │ └── window.svg │ ├── material-icons │ │ ├── arrow_downward.svg │ │ ├── arrow_upward.svg │ │ ├── category.svg │ │ ├── chevron_right.svg │ │ ├── expand_less.svg │ │ ├── expand_more.svg │ │ ├── label.svg │ │ ├── more_horiz.svg │ │ ├── more_vert.svg │ │ ├── new_label.svg │ │ ├── timelapse.svg │ │ ├── unfold_less.svg │ │ └── unfold_more.svg │ ├── ring-resize.svg │ ├── shell.svg │ ├── toolbar │ │ ├── toolbar-icon-black.svg │ │ └── toolbar-icon-white.svg │ ├── transparent.png │ └── usercontext.svg └── react │ ├── react-dom.production.min.js │ └── react.production.min.js ├── tab-button.png └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | github: [metastable-void] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.gitignore -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/.parcelrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "makefile.configureOnOpen": false 3 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TabArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/TabArray.png -------------------------------------------------------------------------------- /TabArray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/TabArray.svg -------------------------------------------------------------------------------- /docs/PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /docs/addons.mozilla.org/description.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/addons.mozilla.org/description.en.md -------------------------------------------------------------------------------- /docs/addons.mozilla.org/description.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/addons.mozilla.org/description.ja.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Container Tab Groups: Documentation 2 | -------------------------------------------------------------------------------- /docs/releases/v11.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.0.0.md -------------------------------------------------------------------------------- /docs/releases/v11.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.1.0.md -------------------------------------------------------------------------------- /docs/releases/v11.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.10.0.md -------------------------------------------------------------------------------- /docs/releases/v11.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.2.0.md -------------------------------------------------------------------------------- /docs/releases/v11.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.2.1.md -------------------------------------------------------------------------------- /docs/releases/v11.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.3.0.md -------------------------------------------------------------------------------- /docs/releases/v11.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.4.0.md -------------------------------------------------------------------------------- /docs/releases/v11.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.5.0.md -------------------------------------------------------------------------------- /docs/releases/v11.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.6.0.md -------------------------------------------------------------------------------- /docs/releases/v11.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.6.1.md -------------------------------------------------------------------------------- /docs/releases/v11.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.6.2.md -------------------------------------------------------------------------------- /docs/releases/v11.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.7.0.md -------------------------------------------------------------------------------- /docs/releases/v11.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.8.0.md -------------------------------------------------------------------------------- /docs/releases/v11.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.8.1.md -------------------------------------------------------------------------------- /docs/releases/v11.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/releases/v11.9.0.md -------------------------------------------------------------------------------- /docs/src_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/docs/src_diagram.png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/package.json -------------------------------------------------------------------------------- /scripts-src/amo-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/amo-markdown.ts -------------------------------------------------------------------------------- /scripts-src/build-languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/build-languages.ts -------------------------------------------------------------------------------- /scripts-src/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/build.ts -------------------------------------------------------------------------------- /scripts-src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/index.ts -------------------------------------------------------------------------------- /scripts-src/language-codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/language-codes.json -------------------------------------------------------------------------------- /scripts-src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/test.ts -------------------------------------------------------------------------------- /scripts-src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/scripts-src/tsconfig.json -------------------------------------------------------------------------------- /shellscripts/build-amo-descriptions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/shellscripts/build-amo-descriptions.sh -------------------------------------------------------------------------------- /shellscripts/update-contextual-identities-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/shellscripts/update-contextual-identities-icons.sh -------------------------------------------------------------------------------- /social-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/social-image.png -------------------------------------------------------------------------------- /src/api/ApiDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/api/ApiDefinitions.ts -------------------------------------------------------------------------------- /src/background/background-activated-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-activated-tabs.ts -------------------------------------------------------------------------------- /src/background/background-autodiscard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-autodiscard.ts -------------------------------------------------------------------------------- /src/background/background-closed-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-closed-tabs.ts -------------------------------------------------------------------------------- /src/background/background-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-commands.ts -------------------------------------------------------------------------------- /src/background/background-container-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-container-observer.ts -------------------------------------------------------------------------------- /src/background/background-content-script-registrar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-content-script-registrar.ts -------------------------------------------------------------------------------- /src/background/background-content-script-responder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-content-script-responder.ts -------------------------------------------------------------------------------- /src/background/background-created-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-created-tab.ts -------------------------------------------------------------------------------- /src/background/background-index-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-index-tab.ts -------------------------------------------------------------------------------- /src/background/background-install-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-install-handler.ts -------------------------------------------------------------------------------- /src/background/background-menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-menus.ts -------------------------------------------------------------------------------- /src/background/background-omnibox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-omnibox.ts -------------------------------------------------------------------------------- /src/background/background-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-proxy.ts -------------------------------------------------------------------------------- /src/background/background-redirector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-redirector.ts -------------------------------------------------------------------------------- /src/background/background-set-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-set-header.ts -------------------------------------------------------------------------------- /src/background/background-storage-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-storage-observer.ts -------------------------------------------------------------------------------- /src/background/background-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-sync.ts -------------------------------------------------------------------------------- /src/background/background-tab-lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-tab-lifecycle.ts -------------------------------------------------------------------------------- /src/background/background-tab-sorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-tab-sorter.ts -------------------------------------------------------------------------------- /src/background/background-update-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-update-checker.ts -------------------------------------------------------------------------------- /src/background/background-url-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background-url-change.ts -------------------------------------------------------------------------------- /src/background/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background.html -------------------------------------------------------------------------------- /src/background/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/background.ts -------------------------------------------------------------------------------- /src/background/includes/BeforeRequestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/BeforeRequestHandler.ts -------------------------------------------------------------------------------- /src/background/includes/InitialWindowsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/InitialWindowsService.ts -------------------------------------------------------------------------------- /src/background/includes/TabState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/TabState.ts -------------------------------------------------------------------------------- /src/background/includes/TabStateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/TabStateStore.ts -------------------------------------------------------------------------------- /src/background/includes/active-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/active-container.ts -------------------------------------------------------------------------------- /src/background/includes/alarms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/alarms.ts -------------------------------------------------------------------------------- /src/background/includes/ext-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/ext-content.ts -------------------------------------------------------------------------------- /src/background/includes/extension-version-migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/background/includes/extension-version-migrations.ts -------------------------------------------------------------------------------- /src/components/container-color-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/container-color-picker.ts -------------------------------------------------------------------------------- /src/components/container-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/container-editor.ts -------------------------------------------------------------------------------- /src/components/container-icon-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/container-icon-picker.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-bottom-navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-bottom-navigation.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-drawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-drawer.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-fragment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-fragment.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-frame-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-frame-layout.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-menu-item.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-top-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-top-bar.ts -------------------------------------------------------------------------------- /src/components/ctg/ctg-vertical-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/ctg/ctg-vertical-layout.ts -------------------------------------------------------------------------------- /src/components/help-banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/help-banner.ts -------------------------------------------------------------------------------- /src/components/menulist-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/menulist-container.ts -------------------------------------------------------------------------------- /src/components/menulist-site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/menulist-site.ts -------------------------------------------------------------------------------- /src/components/menulist-supergroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/menulist-supergroup.ts -------------------------------------------------------------------------------- /src/components/menulist-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/menulist-tab.ts -------------------------------------------------------------------------------- /src/components/menulist-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/menulist-tag.ts -------------------------------------------------------------------------------- /src/components/menulist-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/menulist-window.ts -------------------------------------------------------------------------------- /src/components/modal-confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/modal-confirm.ts -------------------------------------------------------------------------------- /src/components/modal-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/modal-frame.ts -------------------------------------------------------------------------------- /src/components/modal-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/modal-menu.ts -------------------------------------------------------------------------------- /src/components/modal-move-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/modal-move-group.ts -------------------------------------------------------------------------------- /src/components/modal-set-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/modal-set-tag.ts -------------------------------------------------------------------------------- /src/components/panel-windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/panel-windows.ts -------------------------------------------------------------------------------- /src/components/panorama-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/panorama-container.ts -------------------------------------------------------------------------------- /src/components/panorama-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/panorama-tab.ts -------------------------------------------------------------------------------- /src/components/proxy-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/proxy-editor.ts -------------------------------------------------------------------------------- /src/components/proxy-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/proxy-manager.ts -------------------------------------------------------------------------------- /src/components/supergroup-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/supergroup-editor.ts -------------------------------------------------------------------------------- /src/components/tab-group-listing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/tab-group-listing.ts -------------------------------------------------------------------------------- /src/components/tab-group-overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/tab-group-overrides.ts -------------------------------------------------------------------------------- /src/components/tab-group-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/tab-group-proxy.ts -------------------------------------------------------------------------------- /src/components/tab-group-sorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/tab-group-sorter.ts -------------------------------------------------------------------------------- /src/components/tag-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/components/tag-editor.ts -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/config/config.ts -------------------------------------------------------------------------------- /src/content/content-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/content-interfaces.ts -------------------------------------------------------------------------------- /src/content/ext/directory-listing/directory-listing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/ext/directory-listing/directory-listing.ts -------------------------------------------------------------------------------- /src/content/ext/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/ext/list.ts -------------------------------------------------------------------------------- /src/content/ext/once-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/ext/once-guard.ts -------------------------------------------------------------------------------- /src/content/overrides/LanguageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/overrides/LanguageStore.ts -------------------------------------------------------------------------------- /src/content/overrides/content-localstorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/overrides/content-localstorage.ts -------------------------------------------------------------------------------- /src/content/overrides/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/content/overrides/content.ts -------------------------------------------------------------------------------- /src/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/css/theme.css -------------------------------------------------------------------------------- /src/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/defs.ts -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/language-and-countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/language-and-countries.csv -------------------------------------------------------------------------------- /src/legacy-lib/colors/CssColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/colors/CssColor.ts -------------------------------------------------------------------------------- /src/legacy-lib/colors/Srgb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/colors/Srgb.ts -------------------------------------------------------------------------------- /src/legacy-lib/colors/Xyz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/colors/Xyz.ts -------------------------------------------------------------------------------- /src/legacy-lib/cookies/ContentStorageStatistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/cookies/ContentStorageStatistics.ts -------------------------------------------------------------------------------- /src/legacy-lib/cookies/CookieProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/cookies/CookieProvider.ts -------------------------------------------------------------------------------- /src/legacy-lib/modules/IndexTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/modules/IndexTab.ts -------------------------------------------------------------------------------- /src/legacy-lib/modules/containers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/modules/containers.ts -------------------------------------------------------------------------------- /src/legacy-lib/modules/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/modules/i18n.ts -------------------------------------------------------------------------------- /src/legacy-lib/tabs/WindowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/tabs/WindowService.ts -------------------------------------------------------------------------------- /src/legacy-lib/themes/DarkThemeMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/themes/DarkThemeMonitor.ts -------------------------------------------------------------------------------- /src/legacy-lib/themes/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/themes/Theme.ts -------------------------------------------------------------------------------- /src/legacy-lib/themes/ThemeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/legacy-lib/themes/ThemeService.ts -------------------------------------------------------------------------------- /src/lib/BroadcastTopic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/BroadcastTopic.ts -------------------------------------------------------------------------------- /src/lib/DateFormatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/DateFormatService.ts -------------------------------------------------------------------------------- /src/lib/DebuggingInformationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/DebuggingInformationService.ts -------------------------------------------------------------------------------- /src/lib/DomFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/DomFactory.ts -------------------------------------------------------------------------------- /src/lib/ElapsedTimeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ElapsedTimeService.ts -------------------------------------------------------------------------------- /src/lib/ExtensionListingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ExtensionListingService.ts -------------------------------------------------------------------------------- /src/lib/ExtensionPageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ExtensionPageService.ts -------------------------------------------------------------------------------- /src/lib/ExtensionVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ExtensionVersion.ts -------------------------------------------------------------------------------- /src/lib/ExtensionVersionMigrationRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ExtensionVersionMigrationRegistry.ts -------------------------------------------------------------------------------- /src/lib/ExternalServiceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ExternalServiceProvider.ts -------------------------------------------------------------------------------- /src/lib/PageLoaderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/PageLoaderService.ts -------------------------------------------------------------------------------- /src/lib/RandomIdService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/RandomIdService.ts -------------------------------------------------------------------------------- /src/lib/SenityCheckService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/SenityCheckService.ts -------------------------------------------------------------------------------- /src/lib/ServiceRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/ServiceRegistry.ts -------------------------------------------------------------------------------- /src/lib/SpinnerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/SpinnerService.ts -------------------------------------------------------------------------------- /src/lib/StartupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/StartupService.ts -------------------------------------------------------------------------------- /src/lib/TabIconService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/TabIconService.ts -------------------------------------------------------------------------------- /src/lib/UrlRegistrationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/UrlRegistrationService.ts -------------------------------------------------------------------------------- /src/lib/browserAction/BrowserActionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/browserAction/BrowserActionService.ts -------------------------------------------------------------------------------- /src/lib/config/ConfigurationOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/config/ConfigurationOption.ts -------------------------------------------------------------------------------- /src/lib/config/ConfigurationSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/config/ConfigurationSerializer.ts -------------------------------------------------------------------------------- /src/lib/config/FpiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/config/FpiService.ts -------------------------------------------------------------------------------- /src/lib/config/StorageConfigurationOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/config/StorageConfigurationOption.ts -------------------------------------------------------------------------------- /src/lib/console/CompatConsole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/console/CompatConsole.ts -------------------------------------------------------------------------------- /src/lib/console/ConsoleFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/console/ConsoleFormatter.ts -------------------------------------------------------------------------------- /src/lib/console/ConsoleHistoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/console/ConsoleHistoryService.ts -------------------------------------------------------------------------------- /src/lib/console/ConsoleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/console/ConsoleService.ts -------------------------------------------------------------------------------- /src/lib/cookies/CookieCopyService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/cookies/CookieCopyService.ts -------------------------------------------------------------------------------- /src/lib/cookies/SyncedCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/cookies/SyncedCookie.ts -------------------------------------------------------------------------------- /src/lib/frontend/Store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/frontend/Store.ts -------------------------------------------------------------------------------- /src/lib/history/ContainerHistoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/history/ContainerHistoryService.ts -------------------------------------------------------------------------------- /src/lib/history/InstallationHistoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/history/InstallationHistoryService.ts -------------------------------------------------------------------------------- /src/lib/history/PerformanceHistoryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/history/PerformanceHistoryService.ts -------------------------------------------------------------------------------- /src/lib/menus/MenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/menus/MenuItem.ts -------------------------------------------------------------------------------- /src/lib/menus/PopupTabContextMenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/menus/PopupTabContextMenuItem.ts -------------------------------------------------------------------------------- /src/lib/notifications/NotificationChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/notifications/NotificationChannel.ts -------------------------------------------------------------------------------- /src/lib/notifications/NotificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/notifications/NotificationService.ts -------------------------------------------------------------------------------- /src/lib/overrides/AbstractPerContainerSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/overrides/AbstractPerContainerSettings.ts -------------------------------------------------------------------------------- /src/lib/overrides/ChromiumReleaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/overrides/ChromiumReleaseService.ts -------------------------------------------------------------------------------- /src/lib/overrides/LanguageSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/overrides/LanguageSettings.ts -------------------------------------------------------------------------------- /src/lib/overrides/PerContainerSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/overrides/PerContainerSettings.ts -------------------------------------------------------------------------------- /src/lib/overrides/UaDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/overrides/UaDataService.ts -------------------------------------------------------------------------------- /src/lib/overrides/UserAgentSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/overrides/UserAgentSettings.ts -------------------------------------------------------------------------------- /src/lib/package/BuildMetadataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/BuildMetadataService.ts -------------------------------------------------------------------------------- /src/lib/package/DirectoryListingParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/DirectoryListingParser.ts -------------------------------------------------------------------------------- /src/lib/package/DirectoryListingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/DirectoryListingService.ts -------------------------------------------------------------------------------- /src/lib/package/PackageDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/PackageDirectory.ts -------------------------------------------------------------------------------- /src/lib/package/PackageInformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/PackageInformation.ts -------------------------------------------------------------------------------- /src/lib/package/PackageInformationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/PackageInformationService.ts -------------------------------------------------------------------------------- /src/lib/package/PackageIntegrityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/package/PackageIntegrityService.ts -------------------------------------------------------------------------------- /src/lib/proxies/ProxyInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/proxies/ProxyInfo.ts -------------------------------------------------------------------------------- /src/lib/proxies/ProxyPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/proxies/ProxyPreset.ts -------------------------------------------------------------------------------- /src/lib/proxies/ProxyPresetStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/proxies/ProxyPresetStore.ts -------------------------------------------------------------------------------- /src/lib/proxies/ProxySettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/proxies/ProxySettings.ts -------------------------------------------------------------------------------- /src/lib/proxies/ProxyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/proxies/ProxyType.ts -------------------------------------------------------------------------------- /src/lib/states/ActiveContainerBatchOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/ActiveContainerBatchOperation.ts -------------------------------------------------------------------------------- /src/lib/states/ActiveContainerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/ActiveContainerService.ts -------------------------------------------------------------------------------- /src/lib/states/BrowserStateDao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/BrowserStateDao.ts -------------------------------------------------------------------------------- /src/lib/states/BrowserStateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/BrowserStateService.ts -------------------------------------------------------------------------------- /src/lib/states/BrowserStateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/BrowserStateStore.ts -------------------------------------------------------------------------------- /src/lib/states/DisplayedContainerDao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/DisplayedContainerDao.ts -------------------------------------------------------------------------------- /src/lib/states/OpenTabsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/OpenTabsService.ts -------------------------------------------------------------------------------- /src/lib/states/TabDao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/TabDao.ts -------------------------------------------------------------------------------- /src/lib/states/WindowStateDao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/states/WindowStateDao.ts -------------------------------------------------------------------------------- /src/lib/storage/CachedStorageItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/storage/CachedStorageItem.ts -------------------------------------------------------------------------------- /src/lib/storage/PrefixStorageItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/storage/PrefixStorageItems.ts -------------------------------------------------------------------------------- /src/lib/storage/ReadCachedStorageItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/storage/ReadCachedStorageItem.ts -------------------------------------------------------------------------------- /src/lib/storage/SetStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/storage/SetStorage.ts -------------------------------------------------------------------------------- /src/lib/sync/ContainerSyncService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/sync/ContainerSyncService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/ContainerCreatorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/ContainerCreatorService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/ContainerTabOpenerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/ContainerTabOpenerService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/ContainerVisibilityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/ContainerVisibilityService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/ContextualIdentityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/ContextualIdentityService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/CookieStoreService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/CookieStoreService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/DisplayedContainerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/DisplayedContainerService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/OpenTabState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/OpenTabState.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/SupergroupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/SupergroupService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TabGroupAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TabGroupAttributes.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TabGroupDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TabGroupDirectory.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TabGroupDirectorySnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TabGroupDirectorySnapshot.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TabGroupOptionDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TabGroupOptionDirectory.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TabGroupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TabGroupService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TabSortingProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TabSortingProvider.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/TemporaryContainerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/TemporaryContainerService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/WindowContainerHidingHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/WindowContainerHidingHelper.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/tags/TabAttributeMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/tags/TabAttributeMap.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/tags/TabAttributeTagId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/tags/TabAttributeTagId.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/tags/TagDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/tags/TagDirectory.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/tags/TagDirectorySnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/tags/TagDirectorySnapshot.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/tags/TagService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/tags/TagService.ts -------------------------------------------------------------------------------- /src/lib/tabGroups/tags/TagType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabGroups/tags/TagType.ts -------------------------------------------------------------------------------- /src/lib/tabs/CookieStoreTabMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/CookieStoreTabMap.ts -------------------------------------------------------------------------------- /src/lib/tabs/IndexTabService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/IndexTabService.ts -------------------------------------------------------------------------------- /src/lib/tabs/NewTabPageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/NewTabPageService.ts -------------------------------------------------------------------------------- /src/lib/tabs/SupergroupTabGroupFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/SupergroupTabGroupFilter.ts -------------------------------------------------------------------------------- /src/lib/tabs/TabConverterService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/TabConverterService.ts -------------------------------------------------------------------------------- /src/lib/tabs/TabPreviewService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/TabPreviewService.ts -------------------------------------------------------------------------------- /src/lib/tabs/TabQueryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/TabQueryService.ts -------------------------------------------------------------------------------- /src/lib/tabs/TabService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/TabService.ts -------------------------------------------------------------------------------- /src/lib/tabs/TabSortingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/TabSortingService.ts -------------------------------------------------------------------------------- /src/lib/tabs/TabUrlService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/tabs/TabUrlService.ts -------------------------------------------------------------------------------- /src/lib/windows/PrivateWindowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/windows/PrivateWindowService.ts -------------------------------------------------------------------------------- /src/lib/windows/WindowTabCountService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/lib/windows/WindowTabCountService.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/cookies/cookies.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/cookies/cookies.css -------------------------------------------------------------------------------- /src/pages/cookies/cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/cookies/cookies.html -------------------------------------------------------------------------------- /src/pages/cookies/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/cookies/cookies.ts -------------------------------------------------------------------------------- /src/pages/debugging/debugging.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/debugging.css -------------------------------------------------------------------------------- /src/pages/debugging/debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/debugging.html -------------------------------------------------------------------------------- /src/pages/debugging/debugging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/debugging.ts -------------------------------------------------------------------------------- /src/pages/debugging/fragments/FilesFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/fragments/FilesFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/debugging/fragments/InstallationHistoryFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/fragments/InstallationHistoryFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/debugging/fragments/LogFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/fragments/LogFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/debugging/fragments/PerforamanceFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/fragments/PerforamanceFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/debugging/fragments/TabCountFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/debugging/fragments/TabCountFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/index/index-tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/index/index-tab.html -------------------------------------------------------------------------------- /src/pages/index/index-tab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/index/index-tab.ts -------------------------------------------------------------------------------- /src/pages/navigation/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/confirm.html -------------------------------------------------------------------------------- /src/pages/navigation/navigation-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/navigation-components.tsx -------------------------------------------------------------------------------- /src/pages/navigation/navigation-elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/navigation-elements.ts -------------------------------------------------------------------------------- /src/pages/navigation/navigation-i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/navigation-i18n.ts -------------------------------------------------------------------------------- /src/pages/navigation/navigation-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/navigation-renderer.ts -------------------------------------------------------------------------------- /src/pages/navigation/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/navigation.css -------------------------------------------------------------------------------- /src/pages/navigation/open-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/open-container.html -------------------------------------------------------------------------------- /src/pages/navigation/select-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/navigation/select-container.tsx -------------------------------------------------------------------------------- /src/pages/options/options-i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/options/options-i18n.ts -------------------------------------------------------------------------------- /src/pages/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/options/options.css -------------------------------------------------------------------------------- /src/pages/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/options/options.html -------------------------------------------------------------------------------- /src/pages/options/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/options/options.ts -------------------------------------------------------------------------------- /src/pages/page-action/page-action.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/page-action/page-action.css -------------------------------------------------------------------------------- /src/pages/page-action/page-action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/page-action/page-action.html -------------------------------------------------------------------------------- /src/pages/page-action/page-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/page-action/page-action.ts -------------------------------------------------------------------------------- /src/pages/panorama/PanoramaStateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/panorama/PanoramaStateStore.ts -------------------------------------------------------------------------------- /src/pages/panorama/panorama.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/panorama/panorama.css -------------------------------------------------------------------------------- /src/pages/panorama/panorama.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/panorama/panorama.html -------------------------------------------------------------------------------- /src/pages/panorama/panorama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/panorama/panorama.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/GlobalMenuItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/GlobalMenuItems.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/PopupCommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/PopupCommandHandler.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/PopupFocusHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/PopupFocusHandlers.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/PopupRendererService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/PopupRendererService.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/AbstractFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/AbstractFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/ContainerDetailsFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/ContainerDetailsFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/ContainersFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/ContainersFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/FragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/FragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/HelpFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/HelpFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/SimpleFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/SimpleFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/SiteDetailsFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/SiteDetailsFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/SitesFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/SitesFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/fragments/WindowsFragmentBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/fragments/WindowsFragmentBuilder.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/legacy/PopupCurrentWindowRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/legacy/PopupCurrentWindowRenderer.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/legacy/PopupModalRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/legacy/PopupModalRenderer.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/legacy/PopupRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/legacy/PopupRenderer.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/legacy/PopupThemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/legacy/PopupThemes.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/legacy/PopupUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/legacy/PopupUtils.ts -------------------------------------------------------------------------------- /src/pages/popup-v2/popup-v2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/popup-v2.css -------------------------------------------------------------------------------- /src/pages/popup-v2/popup-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/popup-v2.html -------------------------------------------------------------------------------- /src/pages/popup-v2/popup-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/pages/popup-v2/popup-v2.ts -------------------------------------------------------------------------------- /src/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/src/release.json -------------------------------------------------------------------------------- /static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/LICENSE -------------------------------------------------------------------------------- /static/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/cs/messages.json -------------------------------------------------------------------------------- /static/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/de/messages.json -------------------------------------------------------------------------------- /static/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/en/messages.json -------------------------------------------------------------------------------- /static/_locales/eo/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/eo/messages.json -------------------------------------------------------------------------------- /static/_locales/es-ES/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/es-ES/messages.json -------------------------------------------------------------------------------- /static/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/fr/messages.json -------------------------------------------------------------------------------- /static/_locales/gl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/gl/messages.json -------------------------------------------------------------------------------- /static/_locales/ia/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/ia/messages.json -------------------------------------------------------------------------------- /static/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/ja/messages.json -------------------------------------------------------------------------------- /static/_locales/pt/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/pt/messages.json -------------------------------------------------------------------------------- /static/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /static/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/ru/messages.json -------------------------------------------------------------------------------- /static/_locales/ta/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /static/_locales/uk/messages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /static/_locales/zh_Hans/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/_locales/zh_Hans/messages.json -------------------------------------------------------------------------------- /static/css/components/container-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/container-editor.css -------------------------------------------------------------------------------- /static/css/components/ctg/ctg-bottom-navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/ctg/ctg-bottom-navigation.css -------------------------------------------------------------------------------- /static/css/components/ctg/ctg-drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/ctg/ctg-drawer.css -------------------------------------------------------------------------------- /static/css/components/ctg/ctg-frame-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/ctg/ctg-frame-layout.css -------------------------------------------------------------------------------- /static/css/components/ctg/ctg-menu-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/ctg/ctg-menu-item.css -------------------------------------------------------------------------------- /static/css/components/ctg/ctg-top-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/ctg/ctg-top-bar.css -------------------------------------------------------------------------------- /static/css/components/ctg/ctg-vertical-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/ctg/ctg-vertical-layout.css -------------------------------------------------------------------------------- /static/css/components/help-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/help-banner.css -------------------------------------------------------------------------------- /static/css/components/menulist-container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/menulist-container.css -------------------------------------------------------------------------------- /static/css/components/menulist-site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/menulist-site.css -------------------------------------------------------------------------------- /static/css/components/menulist-supergroup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/menulist-supergroup.css -------------------------------------------------------------------------------- /static/css/components/menulist-tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/menulist-tab.css -------------------------------------------------------------------------------- /static/css/components/menulist-tag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/menulist-tag.css -------------------------------------------------------------------------------- /static/css/components/modal-confirm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/modal-confirm.css -------------------------------------------------------------------------------- /static/css/components/modal-frame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/modal-frame.css -------------------------------------------------------------------------------- /static/css/components/modal-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/modal-menu.css -------------------------------------------------------------------------------- /static/css/components/panel-windows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/panel-windows.css -------------------------------------------------------------------------------- /static/css/components/panorama-tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/panorama-tab.css -------------------------------------------------------------------------------- /static/css/components/proxy-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/proxy-editor.css -------------------------------------------------------------------------------- /static/css/components/proxy-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/proxy-manager.css -------------------------------------------------------------------------------- /static/css/components/supergroup-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/supergroup-editor.css -------------------------------------------------------------------------------- /static/css/components/tab-group-listing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/tab-group-listing.css -------------------------------------------------------------------------------- /static/css/components/tab-group-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/tab-group-overrides.css -------------------------------------------------------------------------------- /static/css/components/tab-group-proxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/tab-group-proxy.css -------------------------------------------------------------------------------- /static/css/components/tab-group-sorter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/tab-group-sorter.css -------------------------------------------------------------------------------- /static/css/components/usercontext.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/components/usercontext.css -------------------------------------------------------------------------------- /static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/css/theme.css -------------------------------------------------------------------------------- /static/i18n-stats/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/i18n-stats/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/cs.json -------------------------------------------------------------------------------- /static/i18n-stats/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/de.json -------------------------------------------------------------------------------- /static/i18n-stats/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/en.json -------------------------------------------------------------------------------- /static/i18n-stats/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/eo.json -------------------------------------------------------------------------------- /static/i18n-stats/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/es-ES.json -------------------------------------------------------------------------------- /static/i18n-stats/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/fr.json -------------------------------------------------------------------------------- /static/i18n-stats/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/gl.json -------------------------------------------------------------------------------- /static/i18n-stats/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/ia.json -------------------------------------------------------------------------------- /static/i18n-stats/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/ja.json -------------------------------------------------------------------------------- /static/i18n-stats/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/pt.json -------------------------------------------------------------------------------- /static/i18n-stats/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/pt_BR.json -------------------------------------------------------------------------------- /static/i18n-stats/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/ru.json -------------------------------------------------------------------------------- /static/i18n-stats/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/ta.json -------------------------------------------------------------------------------- /static/i18n-stats/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/uk.json -------------------------------------------------------------------------------- /static/i18n-stats/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/i18n-stats/zh_Hans.json -------------------------------------------------------------------------------- /static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/icon.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/briefcase.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/cart.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/chill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/chill.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/circle.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/dollar.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/fence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/fence.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/fingerprint.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/food.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/fruit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/fruit.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/gift.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/pet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/pet.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/tree.svg -------------------------------------------------------------------------------- /static/img/contextual-identities/vacation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/contextual-identities/vacation.svg -------------------------------------------------------------------------------- /static/img/filters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/filters.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/add.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/back.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/checkmark-circle-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/checkmark-circle-fill.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/close.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/cookies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/cookies.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/defaultFavicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/defaultFavicon.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/defaultPreview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/defaultPreview.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/delete.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/developer.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/download.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/edit.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/extension.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/folder-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/folder-add.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/folder.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/help.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/highlights.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/highlights.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/menu.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/more.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/open-in-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/open-in-new.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/page-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/page-vertical.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/performance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/performance.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/pin-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/pin-fill.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/plus.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/private-browsing-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/private-browsing-icon.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/reload.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/search.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/settings.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/sidebars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/sidebars.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/tab.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/top-sites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/top-sites.svg -------------------------------------------------------------------------------- /static/img/firefox-icons/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/firefox-icons/window.svg -------------------------------------------------------------------------------- /static/img/material-icons/arrow_downward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/arrow_downward.svg -------------------------------------------------------------------------------- /static/img/material-icons/arrow_upward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/arrow_upward.svg -------------------------------------------------------------------------------- /static/img/material-icons/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/category.svg -------------------------------------------------------------------------------- /static/img/material-icons/chevron_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/chevron_right.svg -------------------------------------------------------------------------------- /static/img/material-icons/expand_less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/expand_less.svg -------------------------------------------------------------------------------- /static/img/material-icons/expand_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/expand_more.svg -------------------------------------------------------------------------------- /static/img/material-icons/label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/label.svg -------------------------------------------------------------------------------- /static/img/material-icons/more_horiz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/more_horiz.svg -------------------------------------------------------------------------------- /static/img/material-icons/more_vert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/more_vert.svg -------------------------------------------------------------------------------- /static/img/material-icons/new_label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/new_label.svg -------------------------------------------------------------------------------- /static/img/material-icons/timelapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/timelapse.svg -------------------------------------------------------------------------------- /static/img/material-icons/unfold_less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/unfold_less.svg -------------------------------------------------------------------------------- /static/img/material-icons/unfold_more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/material-icons/unfold_more.svg -------------------------------------------------------------------------------- /static/img/ring-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/ring-resize.svg -------------------------------------------------------------------------------- /static/img/shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/shell.svg -------------------------------------------------------------------------------- /static/img/toolbar/toolbar-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/toolbar/toolbar-icon-black.svg -------------------------------------------------------------------------------- /static/img/toolbar/toolbar-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/toolbar/toolbar-icon-white.svg -------------------------------------------------------------------------------- /static/img/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/transparent.png -------------------------------------------------------------------------------- /static/img/usercontext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/img/usercontext.svg -------------------------------------------------------------------------------- /static/react/react-dom.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/react/react-dom.production.min.js -------------------------------------------------------------------------------- /static/react/react.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/static/react/react.production.min.js -------------------------------------------------------------------------------- /tab-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/tab-button.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/menhera-org/TabArray/HEAD/tsconfig.json --------------------------------------------------------------------------------