├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── Backend └── worker.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Frontend ├── .gitignore ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── FileDetails.tsx │ │ ├── FilePreview.tsx │ │ ├── HistorySection.tsx │ │ ├── Navbar.tsx │ │ ├── TeraboxForm.tsx │ │ ├── theme-provider.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── hooks │ │ └── use-toast.ts │ ├── index.css │ ├── lib │ │ ├── formatFileSize.ts │ │ ├── getMimeType.ts │ │ ├── historyUtils.ts │ │ └── utils.ts │ ├── main.tsx │ ├── types │ │ └── terabox.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.app.tsbuildinfo ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.node.tsbuildinfo └── vite.config.ts ├── LICENSE ├── README.md └── SECURITY.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **./*.env -------------------------------------------------------------------------------- /Backend/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Backend/worker.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/components.json -------------------------------------------------------------------------------- /Frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/eslint.config.js -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/index.html -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /Frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/postcss.config.js -------------------------------------------------------------------------------- /Frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/App.css -------------------------------------------------------------------------------- /Frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/App.tsx -------------------------------------------------------------------------------- /Frontend/src/components/FileDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/FileDetails.tsx -------------------------------------------------------------------------------- /Frontend/src/components/FilePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/FilePreview.tsx -------------------------------------------------------------------------------- /Frontend/src/components/HistorySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/HistorySection.tsx -------------------------------------------------------------------------------- /Frontend/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/Navbar.tsx -------------------------------------------------------------------------------- /Frontend/src/components/TeraboxForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/TeraboxForm.tsx -------------------------------------------------------------------------------- /Frontend/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/command.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/form.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/input.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/label.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/select.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/table.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /Frontend/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /Frontend/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /Frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/index.css -------------------------------------------------------------------------------- /Frontend/src/lib/formatFileSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/lib/formatFileSize.ts -------------------------------------------------------------------------------- /Frontend/src/lib/getMimeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/lib/getMimeType.ts -------------------------------------------------------------------------------- /Frontend/src/lib/historyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/lib/historyUtils.ts -------------------------------------------------------------------------------- /Frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /Frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/main.tsx -------------------------------------------------------------------------------- /Frontend/src/types/terabox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/src/types/terabox.ts -------------------------------------------------------------------------------- /Frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/tailwind.config.js -------------------------------------------------------------------------------- /Frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/tsconfig.app.json -------------------------------------------------------------------------------- /Frontend/tsconfig.app.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/tsconfig.app.tsbuildinfo -------------------------------------------------------------------------------- /Frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/tsconfig.json -------------------------------------------------------------------------------- /Frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/tsconfig.node.json -------------------------------------------------------------------------------- /Frontend/tsconfig.node.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {"root":["./vite.config.ts"],"version":"5.8.3"} -------------------------------------------------------------------------------- /Frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/Frontend/vite.config.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xarchit/Terabox-Downloader/HEAD/SECURITY.md --------------------------------------------------------------------------------