[Script] Copy Youtube Channel Name to Clipboard

Discussion in 'mTurk Scripts & Resources' started by UCOTC, Mar 2, 2018.

  1. UCOTC

    UCOTC Active Turker

    Messages:
    660
    Gender:
    Male
    Ratings:
    +612
    Speed up some of those Zoltars ...

    Code:
    // ==UserScript==
    // @name         Copy Youtube Channel Name to Clipboard
    // @namespace    UCOTC
    // @version      1.0
    // @description  Copy Youtube Channel Name to Clipboard
    // @author       UCOTC
    // @match        https://www.youtube.com/channel/*
    // @grant       GM_setClipboard
    
    // ==/UserScript==
    
    (function() {
    
        var Channel = document.getElementById("channel-title").innerText;
        GM_setClipboard( Channel );
    
    })();
     
    • Today I Learned Today I Learned x 5
    • Like Like x 2