Wordの定義が表示されているときに、スピーカーアイコンをクリックすると、その発音が読み上げられます。
ページの読み込み時に自動化する方法は?
アイコンを右クリックして、Inspect Element
を選択します。正しい要素で右クリックし、Copy
> CSS Selector
を選択します。次に、この行でユーザースクリプトを作成します
document.querySelector("INSERT SELECTOR").click();
// ==UserScript==
// @name Google auto-speak pronunciation
// @namespace https://greasyfork.org/en/scripts/29771-google-pronunciation-speak
// @include https://*google.com*
// @version 1
// @grant none
// @description Auto speak pronunciation when googling Word's definitions
// @author Ooker
// ==/UserScript==
document.querySelector(".lr_dct_spkr > input:nth-child(1)").click();