Hide spesific servers from Disboard. Add ID of server to config pane.
Disboardで特定のサーバーを非表示にする。 例外設定から除外するサーバーのIDを追加する。
| [ | |
| { | |
| "fileName": "1.png", | |
| "isPrimary": true, | |
| "isForLight": true, | |
| "isForDark": false, | |
| }, | |
| { | |
| "fileName": "2.png", | |
| "isPrimary": false, |
| // ==UserScript== | |
| // @name Github - Open External Link of Wiki in New Tab | |
| // @namespace https://github.com/y-muen | |
| // @license MIT | |
| // @version 0.1 | |
| // @description Open external link fo Github wiki in new tab. | |
| // @author Yoiduki <y-muen> | |
| // @match *://github.com/*/*/wiki/* | |
| // @icon https://www.google.com/s2/favicons?domain=github.com | |
| // @grant none |
| javascript:(function(){ | |
| const maxAuthuser = 3; | |
| var url = document.location; | |
| const params = new URLSearchParams(url.search); | |
| var authuser = params.get('authuser'); | |
| if (authuser == null) { | |
| authuser = 0 | |
| }; | |
| authuser = (authuser + 1) % maxAuthuser; | |
| params.set('authuser', authuser); |
| function code(){ | |
| target="$(pwd)" | |
| if [[ -n "$1" ]]; then | |
| if [[ "$1" =~ "/*" ]]; then | |
| target="$1" | |
| else | |
| target="$(builtin cd $1; pwd)" | |
| fi | |
| fi |
| // ==UserScript== | |
| // @name PostPrime - Make Video Controllable | |
| // @namespace https://github.com/y-muen | |
| // @version 0.1.1 | |
| // @description Hide Marked Posts in PostPrime timeline | |
| // @author Yoiduki <y-muen> | |
| // @match *://postprime.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=postprime.com | |
| // @grant none | |
| // @updateURL https://gist.github.com/y-muen/c6c6b0684b3cc4fc10ec410113815806/raw/postprime-make-video-controllable.js |
| // ==UserScript== | |
| // @name PostPrime - Hide Prime Post | |
| // @namespace https://github.com/y-muen | |
| // @version 0.1.1 | |
| // @description Hide Marked Posts in PostPrime timeline | |
| // @author Yoiduki <y-muen> | |
| // @match *://postprime.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=postprime.com | |
| // @grant none | |
| // @updateURL https://gist.github.com/y-muen/294a63b663eb15fd06ea318d3f1a9e90/raw/postprme-hide-prime-post.js |
| // ==UserScript== | |
| // @name PostPrime - Add Posrt Off | |
| // @namespace https://github.com/y-muen | |
| // @version 0.1.3 | |
| // @description Add hide post botton in PostPrime timeline | |
| // @author Yoiduki <y-muen> | |
| // @match *://postprime.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=postprime.com | |
| // @grant none | |
| // @updateURL https://gist.github.com/y-muen/5ed48690b044611b57a8d94665913cca/raw/postprime-add-post-off.js |
Yahoo!ニュースの記事のページで、SNSリンクの横に検索ボタンを追加する。 検索ボタンを押すと、新しいタブでGoogle検索して、最初の結果に遷移する。
| // ==UserScript== | |
| // @name PostPrime - Expand Text Field | |
| // @namespace https://github.com/y-muen | |
| // @version 0.1.3 | |
| // @description Expand Text Field in PostPrime timeline | |
| // @author Yoiduki <y-muen> | |
| // @include *://postprime.com/* | |
| // @exclude *://postprime.com/*/post/* | |
| // @icon https://www.google.com/s2/favicons?domain=postprime.com | |
| // @grant GM_addStyle |