Mastodon - Auto CW opener
by
unarist
2018-10-04 [2018/10/04 22:51:19]
CWを自動で開きます。まる。
@@ -6,20 +6,11 @@
* @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});
-})();
+((target, proc) => (new MutationObserver(m=>m.forEach(proc)).observe(target, {childList:1, subtree:1}), proc({target})))(
+ document.querySelector('.columns-area'),
+ ({target}) => {
+ // open CW
+ $(target).find('.status__content:has(> :nth-child(3)) .status__content__spoiler-link span').click();
+ // open media spoiler
+ // $(target).find('.media-spoiler').click();
+ });
/*
* @title Mastodon - Auto CW opener
* @description CWを自動で開きます。まる。
* @include http://*/web/*
* @license MIT License
* @javascript_url
*/
((target, proc) => (new MutationObserver(m=>m.forEach(proc)).observe(target, {childList:1, subtree:1}), proc({target})))(
document.querySelector('.columns-area'),
({target}) => {
// open CW
$(target).find('.status__content:has(> :nth-child(3)) .status__content__spoiler-link span').click();
// open media spoiler
// $(target).find('.media-spoiler').click();
});
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。