├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── webext.yml └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ ├── downmerge.yml │ ├── firebase-cron-job.yml │ ├── playwright.yml │ └── release.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .npmrc ├── .prettierrc.json ├── .vercelignore ├── apps ├── extension │ ├── @types │ │ ├── global.d.ts │ │ ├── merge-jsons-webpack-plugin.d.ts │ │ └── webpack.d.ts │ ├── assets │ │ ├── bypass_link_off_32.png │ │ ├── bypass_link_on_32.png │ │ ├── bypass_link_on_48.png │ │ └── bypass_link_pending_32.png │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ └── index.html │ ├── scripts │ │ ├── constant.ts │ │ ├── package-chrome.ts │ │ └── package-firefox.ts │ ├── src │ │ ├── @types │ │ │ ├── fonts.d.ts │ │ │ ├── global.d.ts │ │ │ └── reset.d.ts │ │ ├── BackgroundScript │ │ │ ├── chrome-service-worker.js │ │ │ ├── firefox-bg-script.js │ │ │ ├── index.ts │ │ │ ├── interfaces │ │ │ │ └── redirections.ts │ │ │ ├── misc │ │ │ │ ├── forumPageLinks.ts │ │ │ │ ├── launchAuthFlow.ts │ │ │ │ └── turnOffInputSuggestions.ts │ │ │ ├── redirections │ │ │ │ ├── index.ts │ │ │ │ └── mapper.ts │ │ │ ├── utils │ │ │ │ ├── index.ts │ │ │ │ ├── keepAliveSW.ts │ │ │ │ └── receiveRuntimeMessage.ts │ │ │ └── websites │ │ │ │ ├── index.ts │ │ │ │ └── storageSync.ts │ │ ├── BookmarksPanel │ │ │ ├── components │ │ │ │ ├── BookmarkAddEditDialog.tsx │ │ │ │ ├── BookmarkContextMenu.tsx │ │ │ │ ├── BookmarkRow.tsx │ │ │ │ ├── BookmarksHeader.tsx │ │ │ │ ├── BookmarksPanel.tsx │ │ │ │ ├── ConfirmationDialog.tsx │ │ │ │ ├── FolderAddEditDialog.tsx │ │ │ │ ├── FolderRow.tsx │ │ │ │ ├── PersonSelect.tsx │ │ │ │ ├── VirtualRow.tsx │ │ │ │ └── styles │ │ │ │ │ ├── BookmarksPanel.module.css │ │ │ │ │ ├── FolderRow.module.css │ │ │ │ │ └── VirtualRow.module.css │ │ │ ├── readme.md │ │ │ ├── routes │ │ │ │ └── index.tsx │ │ │ ├── store │ │ │ │ ├── useBookmarkRouteStore.ts │ │ │ │ └── useBookmarkStore.ts │ │ │ └── utils │ │ │ │ ├── bookmark.ts │ │ │ │ ├── index.ts │ │ │ │ └── manipulate.ts │ │ ├── HomePopup │ │ │ ├── components │ │ │ │ ├── Authenticate.tsx │ │ │ │ ├── BookmarksPanelButton.tsx │ │ │ │ ├── LastVisitedButton.tsx │ │ │ │ ├── OpenDefaultsButton.tsx │ │ │ │ ├── OpenForumLinks │ │ │ │ │ ├── ButtonWithFeedback.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── styles │ │ │ │ │ │ └── ButtonWithFeedback.module.css │ │ │ │ │ └── useFeedbackButton.ts │ │ │ │ ├── PersonsPanelButton.tsx │ │ │ │ ├── QuickBookmarkButton.tsx │ │ │ │ ├── ShortcutsPanelButton.tsx │ │ │ │ ├── ToggleExtension.tsx │ │ │ │ ├── ToggleHistory.tsx │ │ │ │ ├── TwoFactorAuthenticate.tsx │ │ │ │ ├── UserProfile.tsx │ │ │ │ └── styles │ │ │ │ │ └── UserProfile.module.css │ │ │ ├── constants │ │ │ │ └── progress.ts │ │ │ ├── containers │ │ │ │ ├── PopupHome.tsx │ │ │ │ └── styles │ │ │ │ │ └── PopupHome.module.css │ │ │ ├── hooks │ │ │ │ └── useExtensionOutdated.ts │ │ │ ├── interfaces │ │ │ │ └── authentication.ts │ │ │ ├── routes │ │ │ │ └── index.tsx │ │ │ └── utils │ │ │ │ ├── authentication.ts │ │ │ │ ├── lastVisited.ts │ │ │ │ └── sync.ts │ │ ├── PersonsPanel │ │ │ ├── components │ │ │ │ ├── AddOrEditPersonDialog.tsx │ │ │ │ ├── ImagePicker.tsx │ │ │ │ ├── PersonHeader.tsx │ │ │ │ ├── PersonVirtualCell.tsx │ │ │ │ ├── PersonsPanel.tsx │ │ │ │ └── styles │ │ │ │ │ ├── AddOrEditPersonDialog.module.css │ │ │ │ │ ├── ImagePicker.module.css │ │ │ │ │ └── PersonHeader.module.css │ │ │ ├── readme.md │ │ │ ├── routes │ │ │ │ └── index.tsx │ │ │ └── utils │ │ │ │ ├── index.ts │ │ │ │ ├── sync.ts │ │ │ │ └── uploadImage.ts │ │ ├── SettingsPanel │ │ │ ├── components │ │ │ │ ├── SettingsPanel.tsx │ │ │ │ ├── Setup2FA.tsx │ │ │ │ ├── TwoFactorAuth.tsx │ │ │ │ └── styles │ │ │ │ │ └── Setup2FA.module.css │ │ │ └── routes │ │ │ │ └── index.tsx │ │ ├── ShortcutsPanel │ │ │ ├── components │ │ │ │ ├── RedirectionRule.tsx │ │ │ │ ├── ReorderButton.tsx │ │ │ │ ├── ShortcutsPanel.tsx │ │ │ │ └── styles │ │ │ │ │ ├── RedirectionRule.module.css │ │ │ │ │ └── ShortcutsPanel.module.css │ │ │ ├── constants │ │ │ │ └── index.ts │ │ │ ├── routes │ │ │ │ └── index.tsx │ │ │ └── utils │ │ │ │ └── index.ts │ │ ├── apis │ │ │ ├── trpcApi.ts │ │ │ └── wretchApi.ts │ │ ├── components │ │ │ ├── AsyncFontLoader.tsx │ │ │ ├── ContextMenu.tsx │ │ │ ├── Global.tsx │ │ │ ├── PopupRoutes.tsx │ │ │ ├── StoreListener.tsx │ │ │ └── styles │ │ │ │ ├── ContextMenu.module.css │ │ │ │ └── Global.module.css │ │ ├── constants │ │ │ ├── env.ts │ │ │ └── index.ts │ │ ├── helpers │ │ │ └── fetchFromStorage.ts │ │ ├── hooks │ │ │ └── useCurrentTab.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── interfaces │ │ │ └── firebase.ts │ │ ├── provider │ │ │ ├── DynamicProvider.tsx │ │ │ └── utils.ts │ │ ├── store │ │ │ ├── extension.ts │ │ │ ├── firebase │ │ │ │ ├── api.ts │ │ │ │ ├── useFirebaseStore.ts │ │ │ │ └── utils.ts │ │ │ ├── history.ts │ │ │ └── outdatedExtension.ts │ │ └── utils │ │ │ ├── common.ts │ │ │ ├── history.ts │ │ │ ├── lastVisited.ts │ │ │ ├── scripting.ts │ │ │ ├── sendRuntimeMessage.ts │ │ │ └── tabs.ts │ ├── tests │ │ ├── fixtures │ │ │ └── extension-fixture.ts │ │ └── specs │ │ │ └── home-popup.spec.ts │ ├── tsconfig.json │ ├── tsconfig.production.json │ └── webpack.config.ts └── web │ ├── next-env.d.ts │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── apple-touch-icon.png │ ├── bypass_link_192.png │ ├── bypass_link_512.png │ ├── chrome.svg │ ├── favicon.ico │ ├── firefox.svg │ ├── footer.png │ ├── manifest.webmanifest.json │ ├── robots.txt │ └── sitemap.xml │ ├── src │ ├── @types │ │ ├── global.d.ts │ │ └── reset.d.ts │ └── app │ │ ├── api │ │ ├── backup │ │ │ └── route.ts │ │ ├── trpc │ │ │ └── [trpc] │ │ │ │ └── route.ts │ │ └── upload-file │ │ │ ├── route.ts │ │ │ └── utils.ts │ │ ├── bookmark-panel │ │ ├── components │ │ │ ├── VirtualRow.tsx │ │ │ └── styles │ │ │ │ └── VirtualRow.module.css │ │ ├── hooks │ │ │ └── usePreloadBookmarks.ts │ │ ├── layout.tsx │ │ ├── page.module.css │ │ └── page.tsx │ │ ├── components │ │ ├── AppHeader.tsx │ │ ├── Footer.tsx │ │ ├── PageHeader.tsx │ │ ├── SalientFeatures.tsx │ │ ├── styles │ │ │ ├── AppHeader.module.css │ │ │ ├── Footer.module.css │ │ │ ├── PageHeader.module.css │ │ │ └── SalientFeatures.module.css │ │ └── types │ │ │ └── feature.ts │ │ ├── constants │ │ ├── env │ │ │ └── server.ts │ │ ├── features.ts │ │ └── routes.ts │ │ ├── helpers │ │ ├── authorizeUser.ts │ │ ├── firebase │ │ │ ├── auth.ts │ │ │ └── index.ts │ │ └── verifyInternalToken.ts │ │ ├── icons │ │ ├── circle.svg │ │ ├── forum.svg │ │ ├── graph.svg │ │ ├── handshake.svg │ │ ├── multilingual.svg │ │ ├── palm.svg │ │ └── security.svg │ │ ├── layout.css │ │ ├── layout.tsx │ │ ├── page.module.css │ │ ├── page.tsx │ │ ├── page.utils.ts │ │ ├── persons-panel │ │ ├── components │ │ │ └── PersonVirtualCell.tsx │ │ ├── hooks │ │ │ └── usePreloadPerson.ts │ │ ├── layout.tsx │ │ ├── page.module.css │ │ └── page.tsx │ │ ├── provider │ │ ├── AppProviders.tsx │ │ ├── AuthProvider.tsx │ │ └── DynamicProvider.tsx │ │ ├── types │ │ └── index.ts │ │ ├── utils │ │ ├── api.ts │ │ ├── index.ts │ │ └── storage.ts │ │ └── web-ext │ │ ├── hooks │ │ ├── usePreload2FA.tsx │ │ └── useWebPreload.ts │ │ ├── layout.tsx │ │ ├── page.module.css │ │ └── page.tsx │ ├── tests │ ├── page-object-models │ │ └── download-page.ts │ └── specs │ │ ├── download-page.spec.ts │ │ └── web-ext-page.spec.ts │ ├── tsconfig.json │ └── vercel.json ├── bypass-links.code-workspace ├── code_of_conduct.md ├── contributing.md ├── licence ├── package.json ├── packages ├── configs │ ├── firebase.config.ts │ ├── manifest │ │ ├── extensionFile.ts │ │ ├── manifest.base.json │ │ ├── manifest.chrome.json │ │ ├── manifest.chrome.prod.json │ │ ├── manifest.firefox.json │ │ └── manifest.firefox.prod.json │ ├── package.json │ ├── postcss.base.mjs │ └── tsconfig.base.json ├── shared │ ├── package.json │ ├── src │ │ ├── @types │ │ │ ├── global.d.ts │ │ │ └── reset.d.ts │ │ ├── components │ │ │ ├── Auth │ │ │ │ ├── components │ │ │ │ │ └── InputTOTP.tsx │ │ │ │ └── constants │ │ │ │ │ └── index.ts │ │ │ ├── Bookmarks │ │ │ │ ├── components │ │ │ │ │ ├── Bookmark.tsx │ │ │ │ │ ├── Favicon.tsx │ │ │ │ │ ├── Folder.tsx │ │ │ │ │ ├── PersonAvatars.tsx │ │ │ │ │ └── styles │ │ │ │ │ │ ├── Bookmark.module.css │ │ │ │ │ │ └── Folder.module.css │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── hooks │ │ │ │ │ └── useBookmark.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── index.ts │ │ │ │ │ └── url.ts │ │ │ │ ├── mapper │ │ │ │ │ └── index.ts │ │ │ │ ├── schema │ │ │ │ │ └── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── index.ts │ │ │ │ │ └── url.ts │ │ │ ├── Header.tsx │ │ │ ├── Persons │ │ │ │ ├── components │ │ │ │ │ ├── BookmarksList.tsx │ │ │ │ │ ├── Person.tsx │ │ │ │ │ ├── Persons.tsx │ │ │ │ │ └── styles │ │ │ │ │ │ ├── BookmarksList.module.css │ │ │ │ │ │ ├── Person.module.css │ │ │ │ │ │ └── Persons.module.css │ │ │ │ ├── hooks │ │ │ │ │ └── usePerson.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── bookmark.ts │ │ │ │ │ └── persons.ts │ │ │ │ ├── schema │ │ │ │ │ └── index.ts │ │ │ │ └── utils │ │ │ │ │ ├── bookmark.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── urls.ts │ │ │ ├── ScrollButton.tsx │ │ │ ├── Search.tsx │ │ │ └── styles │ │ │ │ ├── Header.module.css │ │ │ │ └── ScrollButton.module.css │ │ ├── constants │ │ │ ├── cache.ts │ │ │ ├── index.ts │ │ │ ├── routes.ts │ │ │ ├── storage.ts │ │ │ └── theme.ts │ │ ├── hooks │ │ │ ├── usePlatform.ts │ │ │ └── useStorage.ts │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── ILastVisited.ts │ │ │ ├── IRedirection.ts │ │ │ └── IWebsites.ts │ │ ├── provider │ │ │ └── DynamicContext.ts │ │ ├── schema │ │ │ ├── lastVisitedSchema.ts │ │ │ ├── redirectionSchema.ts │ │ │ └── websitesSchema.ts │ │ ├── schemaIndex.ts │ │ ├── styles │ │ │ ├── bookmarks │ │ │ │ └── styles.module.css │ │ │ └── global.css │ │ └── utils │ │ │ ├── cache.ts │ │ │ ├── index.ts │ │ │ ├── search.ts │ │ │ └── url.ts │ └── tsconfig.json └── trpc │ ├── package.json │ ├── src │ ├── @types │ │ ├── global.d.ts │ │ ├── reset.d.ts │ │ └── trpc.ts │ ├── appRouterIndex.ts │ ├── constants │ │ ├── env.ts │ │ ├── firebase.ts │ │ └── github.ts │ ├── edgeIndex.ts │ ├── index.ts │ ├── interfaces │ │ └── firebase.ts │ ├── middlewares │ │ └── verifyAuthentication.ts │ ├── procedures.ts │ ├── routers │ │ ├── extension.ts │ │ ├── firebaseData.ts │ │ ├── firebaseStorage.ts │ │ ├── index.ts │ │ └── twoFactorAuth.ts │ ├── services │ │ ├── backupService.ts │ │ ├── extensionService.ts │ │ ├── firebase │ │ │ └── realtimeDBService.ts │ │ ├── firebaseAdminService.ts │ │ ├── githubService.ts │ │ ├── twoFactorAuthService.ts │ │ └── userService.ts │ ├── trpc.ts │ └── utils │ │ ├── firebase.ts │ │ └── headers.ts │ ├── tests │ ├── firebase.ts │ ├── routers │ │ ├── extension.spec.ts │ │ └── twoFactorAuth.spec.ts │ └── test-helpers.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── playwright.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── pull_request_template.md ├── readme.md ├── renovate.json ├── scripts └── global-teardown.ts ├── security.md ├── tsconfig.json ├── turbo.json └── xo.config.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/webext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/webext.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/downmerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/workflows/downmerge.yml -------------------------------------------------------------------------------- /.github/workflows/firebase-cron-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/workflows/firebase-cron-job.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vercelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/.vercelignore -------------------------------------------------------------------------------- /apps/extension/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/@types/global.d.ts -------------------------------------------------------------------------------- /apps/extension/@types/merge-jsons-webpack-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/@types/merge-jsons-webpack-plugin.d.ts -------------------------------------------------------------------------------- /apps/extension/@types/webpack.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/@types/webpack.d.ts -------------------------------------------------------------------------------- /apps/extension/assets/bypass_link_off_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/assets/bypass_link_off_32.png -------------------------------------------------------------------------------- /apps/extension/assets/bypass_link_on_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/assets/bypass_link_on_32.png -------------------------------------------------------------------------------- /apps/extension/assets/bypass_link_on_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/assets/bypass_link_on_48.png -------------------------------------------------------------------------------- /apps/extension/assets/bypass_link_pending_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/assets/bypass_link_pending_32.png -------------------------------------------------------------------------------- /apps/extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/package.json -------------------------------------------------------------------------------- /apps/extension/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | export { default } from '@bypass/configs/postcss.base.mjs'; 2 | -------------------------------------------------------------------------------- /apps/extension/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/public/index.html -------------------------------------------------------------------------------- /apps/extension/scripts/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/scripts/constant.ts -------------------------------------------------------------------------------- /apps/extension/scripts/package-chrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/scripts/package-chrome.ts -------------------------------------------------------------------------------- /apps/extension/scripts/package-firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/scripts/package-firefox.ts -------------------------------------------------------------------------------- /apps/extension/src/@types/fonts.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.woff2'; 2 | -------------------------------------------------------------------------------- /apps/extension/src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/@types/global.d.ts -------------------------------------------------------------------------------- /apps/extension/src/@types/reset.d.ts: -------------------------------------------------------------------------------- 1 | import '@bypass/shared/types/reset.d.ts'; 2 | -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/chrome-service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/chrome-service-worker.js -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/firefox-bg-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/firefox-bg-script.js -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/index.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/interfaces/redirections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/interfaces/redirections.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/misc/forumPageLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/misc/forumPageLinks.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/misc/launchAuthFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/misc/launchAuthFlow.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/misc/turnOffInputSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/misc/turnOffInputSuggestions.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/redirections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/redirections/index.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/redirections/mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/redirections/mapper.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/utils/index.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/utils/keepAliveSW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/utils/keepAliveSW.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/utils/receiveRuntimeMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/utils/receiveRuntimeMessage.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/websites/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/websites/index.ts -------------------------------------------------------------------------------- /apps/extension/src/BackgroundScript/websites/storageSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BackgroundScript/websites/storageSync.ts -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/BookmarkAddEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/BookmarkAddEditDialog.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/BookmarkContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/BookmarkContextMenu.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/BookmarkRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/BookmarkRow.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/BookmarksHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/BookmarksHeader.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/BookmarksPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/BookmarksPanel.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/FolderAddEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/FolderAddEditDialog.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/FolderRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/FolderRow.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/PersonSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/PersonSelect.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/VirtualRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/VirtualRow.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/styles/BookmarksPanel.module.css: -------------------------------------------------------------------------------- 1 | .body { 2 | overflow: hidden scroll; 3 | } 4 | -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/styles/FolderRow.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/components/styles/FolderRow.module.css -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/components/styles/VirtualRow.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | cursor: pointer; 3 | user-select: none; 4 | } 5 | -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/readme.md -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/routes/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/store/useBookmarkRouteStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/store/useBookmarkRouteStore.ts -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/store/useBookmarkStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/store/useBookmarkStore.ts -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/utils/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/utils/bookmark.ts -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/utils/index.ts -------------------------------------------------------------------------------- /apps/extension/src/BookmarksPanel/utils/manipulate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/BookmarksPanel/utils/manipulate.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/Authenticate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/Authenticate.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/BookmarksPanelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/BookmarksPanelButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/LastVisitedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/LastVisitedButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/OpenDefaultsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/OpenDefaultsButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/OpenForumLinks/ButtonWithFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/OpenForumLinks/ButtonWithFeedback.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/OpenForumLinks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/OpenForumLinks/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/OpenForumLinks/styles/ButtonWithFeedback.module.css: -------------------------------------------------------------------------------- 1 | .successButton { 2 | border: var(--mantine-color-teal-3) 2px solid; 3 | } 4 | -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/OpenForumLinks/useFeedbackButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/OpenForumLinks/useFeedbackButton.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/PersonsPanelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/PersonsPanelButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/QuickBookmarkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/QuickBookmarkButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/ShortcutsPanelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/ShortcutsPanelButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/ToggleExtension.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/ToggleExtension.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/ToggleHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/ToggleHistory.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/TwoFactorAuthenticate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/TwoFactorAuthenticate.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/UserProfile.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/components/styles/UserProfile.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/components/styles/UserProfile.module.css -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/constants/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/constants/progress.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/containers/PopupHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/containers/PopupHome.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/containers/styles/PopupHome.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/containers/styles/PopupHome.module.css -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/hooks/useExtensionOutdated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/hooks/useExtensionOutdated.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/interfaces/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/interfaces/authentication.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/routes/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/utils/authentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/utils/authentication.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/utils/lastVisited.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/utils/lastVisited.ts -------------------------------------------------------------------------------- /apps/extension/src/HomePopup/utils/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/HomePopup/utils/sync.ts -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/AddOrEditPersonDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/AddOrEditPersonDialog.tsx -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/ImagePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/ImagePicker.tsx -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/PersonHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/PersonHeader.tsx -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/PersonVirtualCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/PersonVirtualCell.tsx -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/PersonsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/PersonsPanel.tsx -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/styles/AddOrEditPersonDialog.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/styles/AddOrEditPersonDialog.module.css -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/styles/ImagePicker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/styles/ImagePicker.module.css -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/components/styles/PersonHeader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/components/styles/PersonHeader.module.css -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/readme.md -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/routes/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/utils/index.ts -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/utils/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/utils/sync.ts -------------------------------------------------------------------------------- /apps/extension/src/PersonsPanel/utils/uploadImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/PersonsPanel/utils/uploadImage.ts -------------------------------------------------------------------------------- /apps/extension/src/SettingsPanel/components/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/SettingsPanel/components/SettingsPanel.tsx -------------------------------------------------------------------------------- /apps/extension/src/SettingsPanel/components/Setup2FA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/SettingsPanel/components/Setup2FA.tsx -------------------------------------------------------------------------------- /apps/extension/src/SettingsPanel/components/TwoFactorAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/SettingsPanel/components/TwoFactorAuth.tsx -------------------------------------------------------------------------------- /apps/extension/src/SettingsPanel/components/styles/Setup2FA.module.css: -------------------------------------------------------------------------------- 1 | .qrCodeWrapper { 2 | flex-direction: column; 3 | } 4 | -------------------------------------------------------------------------------- /apps/extension/src/SettingsPanel/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/SettingsPanel/routes/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/components/RedirectionRule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/ShortcutsPanel/components/RedirectionRule.tsx -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/components/ReorderButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/ShortcutsPanel/components/ReorderButton.tsx -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/components/ShortcutsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/ShortcutsPanel/components/ShortcutsPanel.tsx -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/components/styles/RedirectionRule.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/ShortcutsPanel/components/styles/RedirectionRule.module.css -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/components/styles/ShortcutsPanel.module.css: -------------------------------------------------------------------------------- 1 | .redirectionWrapper { 2 | overflow: auto; 3 | flex: 1; 4 | } 5 | -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/constants/index.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_RULE_ALIAS = 'http:///'; 2 | -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/ShortcutsPanel/routes/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/ShortcutsPanel/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/ShortcutsPanel/utils/index.ts -------------------------------------------------------------------------------- /apps/extension/src/apis/trpcApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/apis/trpcApi.ts -------------------------------------------------------------------------------- /apps/extension/src/apis/wretchApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/apis/wretchApi.ts -------------------------------------------------------------------------------- /apps/extension/src/components/AsyncFontLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/AsyncFontLoader.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/ContextMenu.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/Global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/Global.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/PopupRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/PopupRoutes.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/StoreListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/StoreListener.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/styles/ContextMenu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/styles/ContextMenu.module.css -------------------------------------------------------------------------------- /apps/extension/src/components/styles/Global.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/components/styles/Global.module.css -------------------------------------------------------------------------------- /apps/extension/src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/constants/env.ts -------------------------------------------------------------------------------- /apps/extension/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/constants/index.ts -------------------------------------------------------------------------------- /apps/extension/src/helpers/fetchFromStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/helpers/fetchFromStorage.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/useCurrentTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/hooks/useCurrentTab.ts -------------------------------------------------------------------------------- /apps/extension/src/index.css: -------------------------------------------------------------------------------- 1 | @import '@bypass/shared/styles/global.css'; 2 | -------------------------------------------------------------------------------- /apps/extension/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/index.tsx -------------------------------------------------------------------------------- /apps/extension/src/interfaces/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/interfaces/firebase.ts -------------------------------------------------------------------------------- /apps/extension/src/provider/DynamicProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/provider/DynamicProvider.tsx -------------------------------------------------------------------------------- /apps/extension/src/provider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/provider/utils.ts -------------------------------------------------------------------------------- /apps/extension/src/store/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/store/extension.ts -------------------------------------------------------------------------------- /apps/extension/src/store/firebase/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/store/firebase/api.ts -------------------------------------------------------------------------------- /apps/extension/src/store/firebase/useFirebaseStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/store/firebase/useFirebaseStore.ts -------------------------------------------------------------------------------- /apps/extension/src/store/firebase/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/store/firebase/utils.ts -------------------------------------------------------------------------------- /apps/extension/src/store/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/store/history.ts -------------------------------------------------------------------------------- /apps/extension/src/store/outdatedExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/store/outdatedExtension.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/utils/common.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/utils/history.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/lastVisited.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/utils/lastVisited.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/scripting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/utils/scripting.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/sendRuntimeMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/utils/sendRuntimeMessage.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/src/utils/tabs.ts -------------------------------------------------------------------------------- /apps/extension/tests/fixtures/extension-fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/tests/fixtures/extension-fixture.ts -------------------------------------------------------------------------------- /apps/extension/tests/specs/home-popup.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/tests/specs/home-popup.spec.ts -------------------------------------------------------------------------------- /apps/extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/tsconfig.json -------------------------------------------------------------------------------- /apps/extension/tsconfig.production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/tsconfig.production.json -------------------------------------------------------------------------------- /apps/extension/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/extension/webpack.config.ts -------------------------------------------------------------------------------- /apps/web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/next-env.d.ts -------------------------------------------------------------------------------- /apps/web/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/next.config.ts -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/postcss.config.mjs -------------------------------------------------------------------------------- /apps/web/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/web/public/bypass_link_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/bypass_link_192.png -------------------------------------------------------------------------------- /apps/web/public/bypass_link_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/bypass_link_512.png -------------------------------------------------------------------------------- /apps/web/public/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/chrome.svg -------------------------------------------------------------------------------- /apps/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/favicon.ico -------------------------------------------------------------------------------- /apps/web/public/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/firefox.svg -------------------------------------------------------------------------------- /apps/web/public/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/footer.png -------------------------------------------------------------------------------- /apps/web/public/manifest.webmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/manifest.webmanifest.json -------------------------------------------------------------------------------- /apps/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/robots.txt -------------------------------------------------------------------------------- /apps/web/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/public/sitemap.xml -------------------------------------------------------------------------------- /apps/web/src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/@types/global.d.ts -------------------------------------------------------------------------------- /apps/web/src/@types/reset.d.ts: -------------------------------------------------------------------------------- 1 | import '@bypass/shared/types/reset.d.ts'; 2 | -------------------------------------------------------------------------------- /apps/web/src/app/api/backup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/api/backup/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/upload-file/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/api/upload-file/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/upload-file/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/api/upload-file/utils.ts -------------------------------------------------------------------------------- /apps/web/src/app/bookmark-panel/components/VirtualRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/bookmark-panel/components/VirtualRow.tsx -------------------------------------------------------------------------------- /apps/web/src/app/bookmark-panel/components/styles/VirtualRow.module.css: -------------------------------------------------------------------------------- 1 | .bookmarkWrapper { 2 | cursor: pointer; 3 | user-select: none; 4 | } 5 | -------------------------------------------------------------------------------- /apps/web/src/app/bookmark-panel/hooks/usePreloadBookmarks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/bookmark-panel/hooks/usePreloadBookmarks.ts -------------------------------------------------------------------------------- /apps/web/src/app/bookmark-panel/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/bookmark-panel/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/bookmark-panel/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/bookmark-panel/page.module.css -------------------------------------------------------------------------------- /apps/web/src/app/bookmark-panel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/bookmark-panel/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/components/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/AppHeader.tsx -------------------------------------------------------------------------------- /apps/web/src/app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/Footer.tsx -------------------------------------------------------------------------------- /apps/web/src/app/components/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/PageHeader.tsx -------------------------------------------------------------------------------- /apps/web/src/app/components/SalientFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/SalientFeatures.tsx -------------------------------------------------------------------------------- /apps/web/src/app/components/styles/AppHeader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/styles/AppHeader.module.css -------------------------------------------------------------------------------- /apps/web/src/app/components/styles/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/styles/Footer.module.css -------------------------------------------------------------------------------- /apps/web/src/app/components/styles/PageHeader.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/styles/PageHeader.module.css -------------------------------------------------------------------------------- /apps/web/src/app/components/styles/SalientFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/styles/SalientFeatures.module.css -------------------------------------------------------------------------------- /apps/web/src/app/components/types/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/components/types/feature.ts -------------------------------------------------------------------------------- /apps/web/src/app/constants/env/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/constants/env/server.ts -------------------------------------------------------------------------------- /apps/web/src/app/constants/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/constants/features.ts -------------------------------------------------------------------------------- /apps/web/src/app/constants/routes.ts: -------------------------------------------------------------------------------- 1 | export const ROUTES = { 2 | BYPASS_LINKS_WEB: '/web-ext', 3 | }; 4 | -------------------------------------------------------------------------------- /apps/web/src/app/helpers/authorizeUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/helpers/authorizeUser.ts -------------------------------------------------------------------------------- /apps/web/src/app/helpers/firebase/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/helpers/firebase/auth.ts -------------------------------------------------------------------------------- /apps/web/src/app/helpers/firebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/helpers/firebase/index.ts -------------------------------------------------------------------------------- /apps/web/src/app/helpers/verifyInternalToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/helpers/verifyInternalToken.ts -------------------------------------------------------------------------------- /apps/web/src/app/icons/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/circle.svg -------------------------------------------------------------------------------- /apps/web/src/app/icons/forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/forum.svg -------------------------------------------------------------------------------- /apps/web/src/app/icons/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/graph.svg -------------------------------------------------------------------------------- /apps/web/src/app/icons/handshake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/handshake.svg -------------------------------------------------------------------------------- /apps/web/src/app/icons/multilingual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/multilingual.svg -------------------------------------------------------------------------------- /apps/web/src/app/icons/palm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/palm.svg -------------------------------------------------------------------------------- /apps/web/src/app/icons/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/icons/security.svg -------------------------------------------------------------------------------- /apps/web/src/app/layout.css: -------------------------------------------------------------------------------- 1 | @import '@bypass/shared/styles/global.css'; 2 | 3 | ::selection { 4 | background: #6850ff; 5 | } 6 | -------------------------------------------------------------------------------- /apps/web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/page.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | background-color: #131b21; 3 | } 4 | -------------------------------------------------------------------------------- /apps/web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/page.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/page.utils.ts -------------------------------------------------------------------------------- /apps/web/src/app/persons-panel/components/PersonVirtualCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/persons-panel/components/PersonVirtualCell.tsx -------------------------------------------------------------------------------- /apps/web/src/app/persons-panel/hooks/usePreloadPerson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/persons-panel/hooks/usePreloadPerson.ts -------------------------------------------------------------------------------- /apps/web/src/app/persons-panel/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/persons-panel/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/persons-panel/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/persons-panel/page.module.css -------------------------------------------------------------------------------- /apps/web/src/app/persons-panel/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/persons-panel/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/provider/AppProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/provider/AppProviders.tsx -------------------------------------------------------------------------------- /apps/web/src/app/provider/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/provider/AuthProvider.tsx -------------------------------------------------------------------------------- /apps/web/src/app/provider/DynamicProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/provider/DynamicProvider.tsx -------------------------------------------------------------------------------- /apps/web/src/app/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/types/index.ts -------------------------------------------------------------------------------- /apps/web/src/app/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/utils/api.ts -------------------------------------------------------------------------------- /apps/web/src/app/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/utils/index.ts -------------------------------------------------------------------------------- /apps/web/src/app/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/utils/storage.ts -------------------------------------------------------------------------------- /apps/web/src/app/web-ext/hooks/usePreload2FA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/web-ext/hooks/usePreload2FA.tsx -------------------------------------------------------------------------------- /apps/web/src/app/web-ext/hooks/useWebPreload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/web-ext/hooks/useWebPreload.ts -------------------------------------------------------------------------------- /apps/web/src/app/web-ext/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/web-ext/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/web-ext/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/web-ext/page.module.css -------------------------------------------------------------------------------- /apps/web/src/app/web-ext/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/src/app/web-ext/page.tsx -------------------------------------------------------------------------------- /apps/web/tests/page-object-models/download-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/tests/page-object-models/download-page.ts -------------------------------------------------------------------------------- /apps/web/tests/specs/download-page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/tests/specs/download-page.spec.ts -------------------------------------------------------------------------------- /apps/web/tests/specs/web-ext-page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/tests/specs/web-ext-page.spec.ts -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/apps/web/vercel.json -------------------------------------------------------------------------------- /bypass-links.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/bypass-links.code-workspace -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/contributing.md -------------------------------------------------------------------------------- /licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/licence -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/package.json -------------------------------------------------------------------------------- /packages/configs/firebase.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/firebase.config.ts -------------------------------------------------------------------------------- /packages/configs/manifest/extensionFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/manifest/extensionFile.ts -------------------------------------------------------------------------------- /packages/configs/manifest/manifest.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/manifest/manifest.base.json -------------------------------------------------------------------------------- /packages/configs/manifest/manifest.chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/manifest/manifest.chrome.json -------------------------------------------------------------------------------- /packages/configs/manifest/manifest.chrome.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/manifest/manifest.chrome.prod.json -------------------------------------------------------------------------------- /packages/configs/manifest/manifest.firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/manifest/manifest.firefox.json -------------------------------------------------------------------------------- /packages/configs/manifest/manifest.firefox.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/manifest/manifest.firefox.prod.json -------------------------------------------------------------------------------- /packages/configs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/package.json -------------------------------------------------------------------------------- /packages/configs/postcss.base.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/postcss.base.mjs -------------------------------------------------------------------------------- /packages/configs/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/configs/tsconfig.base.json -------------------------------------------------------------------------------- /packages/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/package.json -------------------------------------------------------------------------------- /packages/shared/src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/@types/global.d.ts -------------------------------------------------------------------------------- /packages/shared/src/@types/reset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/@types/reset.d.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Auth/components/InputTOTP.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Auth/components/InputTOTP.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Auth/constants/index.ts: -------------------------------------------------------------------------------- 1 | export const TOTP_LENGTH = 6; 2 | -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/components/Bookmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/components/Bookmark.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/components/Favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/components/Favicon.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/components/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/components/Folder.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/components/PersonAvatars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/components/PersonAvatars.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/components/styles/Bookmark.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/components/styles/Bookmark.module.css -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/components/styles/Folder.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/components/styles/Folder.module.css -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/constants/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/hooks/useBookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/hooks/useBookmark.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/interfaces/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/interfaces/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/interfaces/url.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/mapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/mapper/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/schema/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/utils/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Bookmarks/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Bookmarks/utils/url.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Header.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/components/BookmarksList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/components/BookmarksList.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/components/Person.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/components/Person.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/components/Persons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/components/Persons.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/components/styles/BookmarksList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/components/styles/BookmarksList.module.css -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/components/styles/Person.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/components/styles/Person.module.css -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/components/styles/Persons.module.css: -------------------------------------------------------------------------------- 1 | .personInner { 2 | overflow: hidden auto; 3 | } 4 | -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/hooks/usePerson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/hooks/usePerson.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/interfaces/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/interfaces/bookmark.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/interfaces/persons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/interfaces/persons.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/schema/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/utils/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/utils/bookmark.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/utils/index.ts -------------------------------------------------------------------------------- /packages/shared/src/components/Persons/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Persons/utils/urls.ts -------------------------------------------------------------------------------- /packages/shared/src/components/ScrollButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/ScrollButton.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/Search.tsx -------------------------------------------------------------------------------- /packages/shared/src/components/styles/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/styles/Header.module.css -------------------------------------------------------------------------------- /packages/shared/src/components/styles/ScrollButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/components/styles/ScrollButton.module.css -------------------------------------------------------------------------------- /packages/shared/src/constants/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/constants/cache.ts -------------------------------------------------------------------------------- /packages/shared/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export const HEADER_HEIGHT = 56; 2 | -------------------------------------------------------------------------------- /packages/shared/src/constants/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/constants/routes.ts -------------------------------------------------------------------------------- /packages/shared/src/constants/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/constants/storage.ts -------------------------------------------------------------------------------- /packages/shared/src/constants/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/constants/theme.ts -------------------------------------------------------------------------------- /packages/shared/src/hooks/usePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/hooks/usePlatform.ts -------------------------------------------------------------------------------- /packages/shared/src/hooks/useStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/hooks/useStorage.ts -------------------------------------------------------------------------------- /packages/shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/index.ts -------------------------------------------------------------------------------- /packages/shared/src/interfaces/ILastVisited.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/interfaces/ILastVisited.ts -------------------------------------------------------------------------------- /packages/shared/src/interfaces/IRedirection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/interfaces/IRedirection.ts -------------------------------------------------------------------------------- /packages/shared/src/interfaces/IWebsites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/interfaces/IWebsites.ts -------------------------------------------------------------------------------- /packages/shared/src/provider/DynamicContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/provider/DynamicContext.ts -------------------------------------------------------------------------------- /packages/shared/src/schema/lastVisitedSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/schema/lastVisitedSchema.ts -------------------------------------------------------------------------------- /packages/shared/src/schema/redirectionSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/schema/redirectionSchema.ts -------------------------------------------------------------------------------- /packages/shared/src/schema/websitesSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/schema/websitesSchema.ts -------------------------------------------------------------------------------- /packages/shared/src/schemaIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/schemaIndex.ts -------------------------------------------------------------------------------- /packages/shared/src/styles/bookmarks/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/styles/bookmarks/styles.module.css -------------------------------------------------------------------------------- /packages/shared/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/styles/global.css -------------------------------------------------------------------------------- /packages/shared/src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/utils/cache.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/utils/index.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/utils/search.ts -------------------------------------------------------------------------------- /packages/shared/src/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/src/utils/url.ts -------------------------------------------------------------------------------- /packages/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/shared/tsconfig.json -------------------------------------------------------------------------------- /packages/trpc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/package.json -------------------------------------------------------------------------------- /packages/trpc/src/@types/global.d.ts: -------------------------------------------------------------------------------- 1 | declare const PROD_ENV: boolean; 2 | -------------------------------------------------------------------------------- /packages/trpc/src/@types/reset.d.ts: -------------------------------------------------------------------------------- 1 | import '@bypass/shared/types/reset.d.ts'; 2 | -------------------------------------------------------------------------------- /packages/trpc/src/@types/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/@types/trpc.ts -------------------------------------------------------------------------------- /packages/trpc/src/appRouterIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/appRouterIndex.ts -------------------------------------------------------------------------------- /packages/trpc/src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/constants/env.ts -------------------------------------------------------------------------------- /packages/trpc/src/constants/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/constants/firebase.ts -------------------------------------------------------------------------------- /packages/trpc/src/constants/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/constants/github.ts -------------------------------------------------------------------------------- /packages/trpc/src/edgeIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/edgeIndex.ts -------------------------------------------------------------------------------- /packages/trpc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/index.ts -------------------------------------------------------------------------------- /packages/trpc/src/interfaces/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/interfaces/firebase.ts -------------------------------------------------------------------------------- /packages/trpc/src/middlewares/verifyAuthentication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/middlewares/verifyAuthentication.ts -------------------------------------------------------------------------------- /packages/trpc/src/procedures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/procedures.ts -------------------------------------------------------------------------------- /packages/trpc/src/routers/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/routers/extension.ts -------------------------------------------------------------------------------- /packages/trpc/src/routers/firebaseData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/routers/firebaseData.ts -------------------------------------------------------------------------------- /packages/trpc/src/routers/firebaseStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/routers/firebaseStorage.ts -------------------------------------------------------------------------------- /packages/trpc/src/routers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/routers/index.ts -------------------------------------------------------------------------------- /packages/trpc/src/routers/twoFactorAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/routers/twoFactorAuth.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/backupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/backupService.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/extensionService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/extensionService.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/firebase/realtimeDBService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/firebase/realtimeDBService.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/firebaseAdminService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/firebaseAdminService.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/githubService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/githubService.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/twoFactorAuthService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/twoFactorAuthService.ts -------------------------------------------------------------------------------- /packages/trpc/src/services/userService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/services/userService.ts -------------------------------------------------------------------------------- /packages/trpc/src/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/trpc.ts -------------------------------------------------------------------------------- /packages/trpc/src/utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/utils/firebase.ts -------------------------------------------------------------------------------- /packages/trpc/src/utils/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/src/utils/headers.ts -------------------------------------------------------------------------------- /packages/trpc/tests/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/tests/firebase.ts -------------------------------------------------------------------------------- /packages/trpc/tests/routers/extension.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/tests/routers/extension.spec.ts -------------------------------------------------------------------------------- /packages/trpc/tests/routers/twoFactorAuth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/tests/routers/twoFactorAuth.spec.ts -------------------------------------------------------------------------------- /packages/trpc/tests/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/tests/test-helpers.ts -------------------------------------------------------------------------------- /packages/trpc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/tsconfig.json -------------------------------------------------------------------------------- /packages/trpc/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/packages/trpc/vitest.config.ts -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/scripts/global-teardown.ts -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/security.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/turbo.json -------------------------------------------------------------------------------- /xo.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amitsingh-007/bypass-links/HEAD/xo.config.ts --------------------------------------------------------------------------------