Skip to content

Manage multiple Google Drive accounts from a single interface with options to edit, delete, create files, and view remaining storage. and search folder from multiple account at one time. πŸ‘

Notifications You must be signed in to change notification settings

tejazmali/Multi-Drive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

17 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Multi Drive

A simple web application to manage multiple Google Drive accounts, browse files, and view storage usage. Built with HTML, CSS, and JavaScript using the Google Drive API.

Screenshot Screenshot


Features

  • Add Multiple Google Accounts: Sign in with multiple Google accounts and manage them in one place.
  • Browse Files and Folders: View files and folders in your Google Drive with a hierarchical structure.
  • Storage Usage: Visualize storage usage with a progress bar.
  • Local Storage: Save account data locally for quick access.
  • Drag-and-Drop Upload: Upload files to Google Drive using drag-and-drop (optional).

Prerequisites

Before running the project, ensure you have the following:

  1. Google Cloud Project:

    • Create a project in the Google Cloud Console.
    • Enable the Google Drive API and Google OAuth 2.0 API.
    • Create OAuth 2.0 credentials (Client ID and Client Secret).
  2. Node.js:

    • Install Node.js to run a local server.
  3. Git:

    • Install Git to clone the repository.

Setup Instructions

1. Clone the Repository

git clone https://github.com/tejazmali/Multi-Drive.git
cd Multi-Drive

2. Set Up Google API Credentials

  1. Go to the Google Cloud Console.
  2. Navigate to APIs & Services β†’ Credentials.
  3. Create an OAuth 2.0 Client ID.
  4. Add http://localhost:3000 to Authorized JavaScript origins and Authorized redirect URIs.
  5. Download the credentials.json file and rename it to credentials.js.
  6. Update credentials.js with your Client ID and API Key:
// credentials.js
export const CLIENT_ID = 'your-client-id.apps.googleusercontent.com';
export const API_KEY = 'your-api-key';
  1. Add credentials.js to Multi-Drive Folder:

3. Install Dependencies

Install the required dependencies to run a local server:

npm install -g serve

4. Run the Project

Start the local server:

serve

Open your browser and navigate to:

http://localhost:3000

Usage

  1. Add Google Account:

    • Click the Add Google Account button.
    • Sign in with your Google account and grant the required permissions.
  2. Browse Files:

    • Click the Browse button on an account card to view files and folders.
    • Expand folders to view their contents.
  3. Disconnect Account:

    • Click the Disconnect button to remove an account.

Troubleshooting

1. "Unverified App" Warning

  • Add your email as a Test User in the Google Cloud Console under OAuth consent screen.

2. Authentication Errors

  • Ensure the Authorized JavaScript origins and Authorized redirect URIs in the Google Cloud Console match http://localhost:3000.

3. CORS Issues

  • Use a local server (e.g., serve) instead of opening the files directly (file:// protocol).

Contributing

Contributions are welcome! Follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature/your-feature).
  3. Commit your changes (git commit -m 'Add some feature').
  4. Push to the branch (git push origin feature/your-feature).
  5. Open a pull request.

Enjoy managing your Google Drive accounts locally! πŸš€


About

Manage multiple Google Drive accounts from a single interface with options to edit, delete, create files, and view remaining storage. and search folder from multiple account at one time. πŸ‘

Topics

Resources

Stars

Watchers

Forks