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

Чтобы установить этот скрипт, вы сначала должны установить расширение браузера, например Tampermonkey, Greasemonkey или Violentmonkey.

Для установки этого скрипта вам необходимо установить расширение, такое как Tampermonkey.

Чтобы установить этот скрипт, вы сначала должны установить расширение браузера, например Tampermonkey или Violentmonkey.

Чтобы установить этот скрипт, вы сначала должны установить расширение браузера, например Tampermonkey или Userscripts.

Чтобы установить этот скрипт, сначала вы должны установить расширение браузера, например Tampermonkey.

Чтобы установить этот скрипт, вы должны установить расширение — менеджер скриптов.

(у меня уже есть менеджер скриптов, дайте мне установить скрипт!)

Чтобы установить этот стиль, сначала вы должны установить расширение браузера, например Stylus.

Чтобы установить этот стиль, сначала вы должны установить расширение браузера, например Stylus.

Чтобы установить этот стиль, сначала вы должны установить расширение браузера, например Stylus.

Чтобы установить этот стиль, сначала вы должны установить расширение — менеджер стилей.

Чтобы установить этот стиль, сначала вы должны установить расширение — менеджер стилей.

Чтобы установить этот стиль, сначала вы должны установить расширение — менеджер стилей.

(у меня уже есть менеджер стилей, дайте мне установить скрипт!)

Автор
Mahika
Установок в день
0
Всего установок
2
Оценки
0 0 0
Версия
3.0.0
Создано
31.03.2026
Обновлено
01.04.2026
Размер
15,7 КБ
Лицензия
нет данных
Работает на

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.