animate.css copy selected animate name

try to take over the world!

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

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

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         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)
})()