Civitai Text Downloader

Make Donload button click to save a description text file.

22.02.2025 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Civitai Text Downloader
// @namespace    http://tampermonkey.net/
// @version      6
// @description  Make Donload button click to save a description text file.
// @author       SenY
// @match        https://civitai.com/*
// @icon         https://civitai.com/favicon.ico
// @grant        none
// @license      BSD
// ==/UserScript==

(function() {
    'use strict';

    // 非メンテナンス警告用のHTMLを作成
    const warningHTML = `
        <div style="padding: 20px; background-color: #fff3cd; border: 1px solid #ffeeba; border-radius: 4px; margin: 10px; font-family: Arial, sans-serif;">
            <h2 style="color: #856404; margin-bottom: 20px;">⚠️ End of Maintenance Notice / 更新終了のお知らせ</h2>
            
            <div style="color: #856404; margin-bottom: 20px;">
                <p style="margin-bottom: 10px;">
                    This userscript "Civitai Text Downloader" is no longer maintained.<br>
                    Please consider switching to the actively maintained fork "Civitai Text Downloader Mod".
                </p>
                <p style="margin-bottom: 20px;">
                    「Civitai Text Downloader」は現在メンテナンスされていません。<br>
                    活発にメンテナンスされているフォーク「Civitai Text Downloader Mod」への移行をご検討ください。
                </p>
            </div>

            <div style="text-align: center;">
                <a href="https://sleazyfork.org/en/scripts/501321-civitai-text-downloader-mod" 
                   target="_blank" 
                   style="display: inline-block; padding: 10px 20px; background-color: #856404; color: white; text-decoration: none; border-radius: 4px; font-weight: bold;">
                    Go to Civitai Text Downloader Mod
                </a>
            </div>
        </div>
    `;

    // HTMLをBlobに変換
    const blob = new Blob([warningHTML], { type: 'text/html' });
    
    // Blobからbase64エンコードされたURLを作成
    const blobUrl = URL.createObjectURL(blob);
    
    // 新しいウィンドウでメッセージを表示
    window.open(blobUrl, '_blank', 'width=700,height=400');

    // メモリリーク防止のためにURLを解放
    setTimeout(() => {
        URL.revokeObjectURL(blobUrl);
    }, 1000);
})();