Google Drive — Folder DDL Extractor

Right-click a folder in Google Drive → "Get Direct Download Links" → save a JSON with appid + ddl for every ZIP/RAR inside

Tendrás que instalar una extensión para tu navegador como Tampermonkey, Greasemonkey o Violentmonkey si quieres utilizar este script.

You will need to install an extension such as Tampermonkey to install this script.

Tendrás que instalar una extensión como Tampermonkey o Violentmonkey para instalar este script.

Necesitarás instalar una extensión como Tampermonkey o Userscripts para instalar este script.

Tendrás que instalar una extensión como Tampermonkey antes de poder instalar este script.

Necesitarás instalar una extensión para administrar scripts de usuario si quieres instalar este script.

(Ya tengo un administrador de scripts de usuario, déjame instalarlo)

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Tendrás que instalar una extensión como Stylus antes de poder instalar este script.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

Para poder instalar esto tendrás que instalar primero una extensión de estilos de usuario.

(Ya tengo un administrador de estilos de usuario, déjame instalarlo)

Autor
Mahika
Instalaciones diarias
0
Instalaciones totales
2
Calificaciones
0 0 0
Versión
3.0.0
Creado
31/03/2026
Actualizado
01/04/2026
Tamaño
15.7 KB
Licencia
Desconocida
Funciona en

Here's a clean README you can paste straight into Tampermonkey's description field, GitHub, Greasy Fork, or wherever you're publishing:

📦 Google Drive — Folder DDL Extractor
Right-click any folder in Google Drive to instantly generate Direct Download Links for every ZIP and RAR file inside it — exported as a ready-to-use JSON file.

✨ Features

Right-click context menu — a "📦 Get Direct Download Links" option is injected into Drive's native context menu when you right-click a folder
Floating button (FAB) — a persistent 📦 button in the bottom-left corner; when you're inside a folder, click it to extract links for that folder directly
Auto-pagination — handles folders with 1,000+ files automatically
No API key needed — uses your existing Google Drive browser session
JSON modal — results shown in a popup with Copy and Download buttons
Toast notifications — status messages for fetching, success, and errors


📄 Output Format
json[
{ "appid": "MyGame_v2", "ddl": "https://drive.google.com/uc?export=download&id=..." },
{ "appid": "Patch_1.1", "ddl": "https://drive.google.com/uc?export=download&id=..." }
]

appid — filename with .zip / .rar extension stripped
ddl — direct download link that bypasses Drive's preview page


🚀 How to Use

Install the script via Tampermonkey
Open Google Drive
Right-click any folder → click "📦 Get Direct Download Links"
Copy or download the generated JSON

Alternatively, navigate inside a folder and click the 📦 floating button in the bottom-left.

⚙️ Customisation
At the top of the script:
jsconst TARGET_EXTS = ['zip', 'rar']; // add '7z', 'tar', etc. as needed
const MENU_LABEL = '📦 Get Direct Download Links'; // change the menu text

🔒 Privacy
All requests go directly to Google's own servers (googleapis.com). No data is sent anywhere else. The script can only access files you already have permission to see.