1
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 2024-10-30

現在使用している音楽サービス

昔は、amazon musicを使ってましたが、いつからだろうかうろ覚えだけど曲の再生内容がランダムになり、それが不満でspotifyに変えました。

知らない曲が気になる

聞いていると知らない曲が流れて、「おっこの曲ええやん?」とか「あれ、この曲ってなんの主題歌だっけ?」と思う事がたまにあります。
調べるのも結構面倒ですよね。
そんな時に、現在聞いている曲を検索するブックマークレットを準備しました。

使い方

  1. ブラウザのブックマークのURL欄に、以下のスクリプトをコピペして保存する
  2. spotifyで、曲を再生中にこのブックマークをクリック(開く)する
  3. googleで曲の検索が入力されて開かれるのでそれっぽいページを探す(人力!)

現在は、動かなくなっているので以下の記事をご確認ください。
https://qiita.com/chaftta/items/4f5aa158e163bbcd381d

javascript:(function() {let a = document.querySelector('a[data-testid="context-link"]');let name = a.getAttribute("aria-label").replace("%E5%86%8D%E7%94%9F%E4%B8%AD%EF%BC%9A", "").replace(" %E3%81%AE ", " ");let query = encodeURIComponent(name);window.open('https://www.google.com/search?q=%27 + query, %27_blank%27);})();
1
0
0

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
1
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?