您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name animate.css copy selected animate name // @namespace http://tampermonkey.net/ // @version 0.0.2 // @description try to take over the world! // @author You // @match https://daneden.github.io/animate.css/ // @grant none // ==/UserScript== /* jshint esversion: 6 */ ;(function () { 'use strict' // Your code here... const wrap = document.querySelector('.site__content .wrap') const btn = document.createElement('button') btn.classList.add('butt') btn.innerText = 'Copy Animate Name' btn.onclick = function () { const select = document.querySelector( '.input.input--dropdown.js--animations' ) const text = select.options[select.selectedIndex].text const handleCopy = function (e) { e.clipboardData.setData('text/plain', text) e.preventDefault() // We want our data, not data from any selection, to be written to the clipboard } document.addEventListener('copy', handleCopy) document.execCommand('copy') document.removeEventListener('copy', handleCopy) } wrap.appendChild(btn) })()