曲名を?る
@@ -1,6 +1,6 @@
/*
* @title 曲名を?る
- * @description 現在のチャンネルと曲名が入力されたトゥート画面を開きます。
+ * @description 現在のチャンネルと曲名を発言欄に入力します。
* @include https://music.pawoo.net/web/*
* @license MIT License
* @javascript_url
@@ -8,13 +8,14 @@
((
q = s => document.querySelector(s),
- n = q`.deck-selector__selector-body.active`.dataset.number
-) => void(open('https://music.pawoo.net/intent/statuses/new?text='
- + encodeURIComponent(
- '#ch' + n + ' 『' + (
- /一緒に「(.*)」を聞き/.exec(decodeURIComponent(q`.twitter-share-button`.href))
- || [, '?']
- )[1] + '』\n'
- ), 'PawooIntent',
- `width=450,height=300,left=${(screen.availWidth-450)/2|0},top=${(screen.availHeight-300)/2|0}`
-)))();
+ b = q`.time-limit-dropdown__option`,
+ t = b.dataset.value
+) => {
+
+ b.dataset.value = '#ch' + q`.deck-selector__selector-body.active`.dataset.number + ' 『' + (
+ /一緒に「(.*)」を聞き/.exec(decodeURIComponent(q`.twitter-share-button`.href)) || [, '?']
+ )[1] + '』\n';
+ b.click();
+ b.dataset.value = t;
+
+})();
/*
* @title 曲名を?る
* @description 現在のチャンネルと曲名を発言欄に入力します。
* @include https://music.pawoo.net/web/*
* @license MIT License
* @javascript_url
*/
((
q = s => document.querySelector(s),
b = q`.time-limit-dropdown__option`,
t = b.dataset.value
) => {
b.dataset.value = '#ch' + q`.deck-selector__selector-body.active`.dataset.number + ' 『' + (
/一緒に「(.*)」を聞き/.exec(decodeURIComponent(q`.twitter-share-button`.href)) || [, '?']
)[1] + '』\n';
b.click();
b.dataset.value = t;
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。