try to take over the world!
当前为
// ==UserScript==
// @name Vocabulary.com Listen Button Shortcut 'x'
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Vidocq
// @match http*://www.vocabulary.com/*
// @grant none
// ==/UserScript==
function getAudioUrl(){
var elements = document.getElementsByClassName('button listen');
elements = elements[0].getAttribute('data-audio');
return elements;
}
(function() {
window.addEventListener('keydown',function(event){
if (event.keyCode == 88) {
var url = "https://audio.vocab.com/1.0/us/"+getAudioUrl()+".mp3";
var audio = new Audio(url);
audio.play();
}
})
})()