Copy Mturk ID to Clipboard Button

Adds a copy to clipboard button in the upper right corner of the page

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Copy Mturk ID to Clipboard Button
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Adds a copy to clipboard button in the upper right corner of the page
// @match        *://*/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Create the button element
    let copyButton = document.createElement('button');
    copyButton.innerHTML = 'Mturk';
    copyButton.style.position = 'fixed';
    copyButton.style.top = '45px';
    copyButton.style.right = '10px';
    copyButton.style.zIndex = '9999';
    copyButton.style.borderRadius = '50%';
    copyButton.style.backgroundColor = 'red';
    copyButton.style.width = '30px';
    copyButton.style.height = '30px';

    // Add hover effect
    copyButton.onmouseover = function() {
        this.style.width = 'auto';
        this.style.height = 'auto';
        this.style.borderRadius = '5px';
        this.style.padding = '5px 10px';
    }
    copyButton.onmouseout = function() {
        this.style.width = '30px';
        this.style.height = '30px';
        this.style.borderRadius = '50%';
        this.style.padding = '0px';
    }

    // Add click event to copy text to clipboard
    copyButton.onclick = function() {
        navigator.clipboard.writeText('ENTERYOURIDHERE');
    }

    // Append the button to the body
    document.body.appendChild(copyButton);
})();