曲名を?る
@@ -1,13 +1,17 @@
/*
* @title 曲名を?る
- * @description 今聞いてる曲名が入力されたトゥート画面を開きます。
+ * @description 現在の deck と曲名が入力されたトゥート画面を開きます。
* @include https://music.pawoo.net/web/*
* @license MIT License
* @javascript_url
*/
-void(open('https://music.pawoo.net/intent/statuses/new?text='
+((
+ q = s => document.querySelector(s).innerText.trim()
+) => void(open('https://music.pawoo.net/intent/statuses/new?text='
+ encodeURIComponent(
- '『' + document.querySelector('.queue-item__metadata-title').innerText + '』'
- )
-));
+ '#' + q`.deck-selector__selector-body.active`
+ + ' 『' + q`.queue-item__metadata-title` + '』\n'
+ ), 'PawooIntent',
+ `width=450,height=300,left=${(screen.availWidth-450)/2|0},top=${(screen.availHeight-300)/2|0}`
+)))();
/*
* @title 曲名を?る
* @description 現在の deck と曲名が入力されたトゥート画面を開きます。
* @include https://music.pawoo.net/web/*
* @license MIT License
* @javascript_url
*/
((
q = s => document.querySelector(s).innerText.trim()
) => void(open('https://music.pawoo.net/intent/statuses/new?text='
+ encodeURIComponent(
'#' + q`.deck-selector__selector-body.active`
+ ' 『' + q`.queue-item__metadata-title` + '』\n'
), 'PawooIntent',
`width=450,height=300,left=${(screen.availWidth-450)/2|0},top=${(screen.availHeight-300)/2|0}`
)))();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。