web-dev-qa-db-ja.com

Wordの定義をグーグル検索するときに自動的に発音を読み上げるにはどうすればよいですか?

Wordの定義が表示されているときに、スピーカーアイコンをクリックすると、その発音が読み上げられます。

ページの読み込み時に自動化する方法は?

2
Ooker

アイコンを右クリックして、Inspect Elementを選択します。正しい要素で右クリックし、Copy> CSS Selectorを選択します。次に、この行でユーザースクリプトを作成します

document.querySelector("INSERT SELECTOR").click();

Greasyforkのユーザースクリプト

// ==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();
0
Ooker