Skip to content

Instantly share code, notes, and snippets.

run locally

default.yml

.config/ ディレクトリにある example.yml をコピーして default.yml を作成し、編集します。

変更箇所:

  • url: http://localhost:3000/
  • port: 3000 # A port that your Misskey server should listen.
@aji-su
aji-su / mastodonsearchExclude.js
Last active August 23, 2017 07:17
マストドン横断検索から特定ワードを含む post を除外するブックマークレット
void((() => {
document.querySelectorAll('.post').forEach(
e => {
var p = e.querySelector('.mst_content');
if (p.innerHTML.match(/除外ワード/) !== null) {
e.style.display = 'none';
}
})