您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Copy SKU texts from Tmall product pages to clipboard with a floating button
// ==UserScript== // @name Copy SKU Texts from Tmall // @namespace http://tampermonkey.net/ // @version 1.0.2 // @description Copy SKU texts from Tmall product pages to clipboard with a floating button // @author max5555 // @license MIT // @match https://detail.tmall.com/item.htm* // @grant GM_setClipboard // ==/UserScript== (function() { 'use strict'; // Create the floating button var floatingButton = document.createElement('button'); floatingButton.innerText = 'Copy SKU Texts'; floatingButton.style.position = 'fixed'; floatingButton.style.bottom = '20px'; floatingButton.style.right = '20px'; floatingButton.style.padding = '10px'; floatingButton.style.backgroundColor = '#4CAF50'; floatingButton.style.color = 'white'; floatingButton.style.border = 'none'; floatingButton.style.borderRadius = '5px'; floatingButton.style.cursor = 'pointer'; floatingButton.style.zIndex = '1000'; // Append the button to the body document.body.appendChild(floatingButton); // Function to create and auto-hide notification function showNotification(message, duration) { var notification = document.createElement('div'); notification.innerText = message; notification.style.position = 'fixed'; notification.style.bottom = '50px'; notification.style.right = '20px'; notification.style.backgroundColor = '#4CAF50'; notification.style.color = 'white'; notification.style.padding = '10px'; notification.style.borderRadius = '5px'; notification.style.zIndex = '1001'; document.body.appendChild(notification); setTimeout(function() { notification.remove(); }, duration); } // Function to copy SKU texts to clipboard floatingButton.addEventListener('click', function() { var skuTexts = Array.from(document.querySelectorAll('.selectSkuText')) .map(element => element.innerText.trim()) .join(', '); GM_setClipboard(skuTexts); showNotification('SKU texts copied to clipboard!', 3000); // Notification for 3 seconds }); })();