0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

続spotifyの再生中の曲をgoogleで検索する

Last updated at Posted at 2025-04-11

新シーズンですよ!

新シーズンを迎え、新曲を聞く機会が増えた今日この頃
新曲を聞きながら仕事をノリノリで進めております。

事件は起きた

この曲よいなぁ、何の主題歌か調べようとしたその時!
あれ、曲検索のブックマークレットが動かない!?

スポティファイのページ内容を確認する……
再生バーのタグ構造が変わっている!!

新ブックマークレット

ということで、早速新しい構造に対応したブックマークレットを作ってみました。
前回のコードは1行にしていましたが、ちょこっと修正する時に面倒なので今回は整形なしですw
改行があってもURL欄にいつも通りぶち込めば動くはずです。

javascript:(function () {
	let ci = document.querySelector('a[data-testid="context-item-link"]');
	let cs = document.querySelector('div[data-testid="context-item-info-subtitles"]');
	let ca = cs.querySelectorAll('a[data-testid="context-item-info-artist"]');
	if (ca.length <= 0) return;
	let name = ci.textContent.trim() + " " + Array.from(ca).map(element => element.textContent.trim()).join(" ");
	let query = encodeURIComponent(name);
	window.open('https://www.google.com/search?q=' + query, '_blank');
})();

どうでもよい個人的な感想

スポティファイの広告なにげに好きなんですよね。
特に牛丼屋の話。

客「一番プレミアムなものをお願いします。」
店員「特盛いっちょう!」

何というか、店員の機転な対応でこいつ出来る!と思いながらほっこりしてしまう。

ということで、良いスポティファイライフを!

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?