spoart
by
noromanba
2018-07-14 [2018/07/14 18:44:33]
open artwork on spotify.com
/*
* @title spoart
* @description open artwork on spotify.com
* @include https://open.spotify.com
* @license MIT License https://opensource.org/licenses/MIT
* @javascript_url
*/
(() => {
'use strict';
const coverart = document.body.querySelector('.cover-art-image');
// TBD handle multi image
// syntax
// url("https://...")
const link = (coverart.style.backgroundImage.match(/(https:[^"]+)/) || [])[1];
if (!link) return;
window.open(link);
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。