Copy Prompt

双击复制 danbooru.donmai.us/gelbooru.com/safebooru.org/yande.re/rule34.xxx/furry.booru.org 右键复制 nozomi.la/www.zerochan.net

2023-07-26 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Copy Prompt
// @namespace    http://tampermonkey.net/
// @version      1.1.2
// @description  双击复制 danbooru.donmai.us/gelbooru.com/safebooru.org/yande.re/rule34.xxx/furry.booru.org  右键复制 nozomi.la/www.zerochan.net
// @author       zuogangju
// @match        *://danbooru.donmai.us/*
// @match        *://gelbooru.com/*
// @match        *://safebooru.org/*
// @match        *://yande.re/*
// @match        *://rule34.xxx/*
// @match        *://furry.booru.org/*
// @match        *://nozomi.la/*
// @match        *://www.zerochan.net/*
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js
// @resource     customCSS https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css
// @grant        none
// ==/UserScript==

/*处理多余的Tags和User信息*/
function tagsValueExec(tagsValue) {
    tagsValue=tagsValue.trim().replace("Rule 34 | ","")
    const tagsValueArray = tagsValue.split("Tags:");
    if (tagsValueArray.length > 1) {
        tagsValue = tagsValueArray[1].trim().split("User:")[0]
    }
    if (!tagsValue.includes(",")) {
        tagsValue=tagsValue.replaceAll(" ",",");
    }
    return tagsValue.replaceAll(", ",",");

}
/*复制文本到剪切板并弹出复制成功*/
function copyPrompt(tagsValue){
    console.log(tagsValue)
    // 复制选中内容到剪贴板
    navigator.clipboard.writeText(tagsValue)
    Swal.fire({
        //position: 'top-end',
        icon: 'success',
        title: '复制成功',
        showConfirmButton: false,
        timer: 1000
    })
}

(function() {
    'use strict';
    // 获取当前页面的URL
    const currentURL = window.location.href;
    var tagsValue
    var content
    var contentImgs
    var myEvent="contextmenu"
    if (currentURL.includes("danbooru.donmai.us")||currentURL.includes("gelbooru.com")) {
        // 获取需要复制的 data-tags 值
        const tag = document.querySelector('[data-tags]');
        if(tag){
            content=document.querySelector('#content,[data-tags]');
            tagsValue=tag.getAttribute('data-tags')
        }else{
            //列表页处理
            contentImgs=document.querySelectorAll("#content img,.thumbnail-container img")
        }
    } else if (currentURL.includes("safebooru.org")|| currentURL.includes("yande.re")||currentURL.includes("rule34.xxx")||currentURL.includes("furry.booru.org") ) {
        const tag=document.querySelector("#image");
        if(tag){
            content = document.querySelector('.content');
            tagsValue=tag.getAttribute('alt')
            tagsValue = tagsValueExec(tagsValue);
        }else{
            //列表页处理
            contentImgs=document.querySelectorAll(".content img")
        }
    } else if (currentURL.includes("nozomi.la")||currentURL.includes("www.zerochan.net")) { //不支持列表页复制
        const tag=document.querySelector("img.png, img.jpg,#fullsize img,.container img");
        tagsValue=tag.getAttribute('alt')
        document.body.addEventListener(myEvent, function(event) {
            event.preventDefault();
            tagsValue = tagsValueExec(tagsValue)
            copyPrompt(tagsValue);
        });
    } else {
        console.log("This is a page with a different URL.");
        // 在这里可以添加针对其他页面的脚本逻辑
    }
    //详情页图片增加监听
    if(content){
        content.addEventListener(myEvent, function(event) {
            event.preventDefault();
            tagsValue=tagsValueExec(tagsValue)
            copyPrompt(tagsValue);
        });
    }
    //列表页图片增加监听
    if(contentImgs){
        contentImgs.forEach((contentImg) => {
            contentImg.addEventListener(myEvent, function(event) {
                event.preventDefault();
                tagsValue=contentImg.getAttribute('alt')
                tagsValue = tagsValueExec(tagsValue);
                copyPrompt(tagsValue);
            });
        });
    }
})();