Vocabulary.com Listen Button Shortcut 'x'

You can modify 'x' to any key you want

目前为 2020-05-13 提交的版本。查看 最新版本

// ==UserScript==
// @name         Vocabulary.com Listen Button Shortcut 'x'
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  You can modify 'x' to any key you want
// @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();
       }
    })
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址