CSDN Guest Copyer (CSDN 匿名复制)

CSDN 匿名免登录,一键复制!

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         CSDN Guest Copyer (CSDN 匿名复制)
// @version      1.0.0
// @description  CSDN 匿名免登录,一键复制!
// @author       Zhifeng Hu
// @icon         https://img-home.csdnimg.cn/images/20201124032511.png
// @match        https://blog.csdn.net/*/article/details/*
// @require      https://libs.baidu.com/jquery/1.9.1/jquery.min.js
// @grant        GM_addStyle
// @grant        GM_setClipboard
// @namespace    https://github.com/huzhifeng/
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    console.log('CSDN Guest Copyer');

    //去除登录框
    GM_addStyle(".login-mark,#passportbox{display:none!important;}");

    //一键复制
    $(".hljs-button").attr("data-title", "一键复制");
    $(".hljs-button").click(function(){
        GM_setClipboard(this.parentNode.innerText);
        $(".hljs-button").attr("data-title", "复制成功");
        setTimeout(function(){
            $(".hljs-button").attr("data-title", "一键复制");
        }, 1000);
    });

    //获取代码块
    let codes = document.querySelectorAll("code");
    codes.forEach(c =>{
        c.contentEditable = "true";
    });
})();