Mastodon - Auto CW opener
by
unarist
2018-10-04 [2018/10/04 22:51:19]
CWを自動で開きます。まる。
/*
* @title Mastodon - Auto CW opener
* @description CWを自動で開きます。まる。
* @include http://*/web/*
* @license MIT License
* @javascript_url
*/
(function() {
'use strict';
new MutationObserver(mutations => {
for (const mutation of mutations) {
for (const node of mutation.addedNodes) {
if (node.className && node.className.match(/^status|^notification|^column$/)) {
// open CW
$(node).find('.status__content:has(> :nth-child(3)) .status__content__spoiler-link span').click();
// open media spoiler
// $(node).find('.media-spoiler').click();
}
}
}
}).observe(document.querySelector('.columns-area'), {childList: true, subtree: true});
})();
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。