MastodonのWebUIでハッシュタグ付き投稿をする際、
何回も打ち直すことなく固定して投稿できるようにするものです。
- タグボタンを押すことで固定文を挿入するかしないか切り替えられます
- 文章を固定できるので様々な使い方ができます
- 最後に使用した固定文は保存されます
// ==UserScript== | |
// @name GROWIにクリップするやつ | |
// @namespace https://mstdn.precure.fun/@karasu_sue | |
// @version 1.3 | |
// @description GROWIにクリップするやつ | |
// @author Sue Karasugawa https://mstdn.precure.fun/@karasu_sue | |
// @match https://mstdn.precure.fun/* | |
// @match https://precure.ml/* | |
// ==/UserScript== | |
(function() { |
I hereby claim:
To claim this, I am signing this object:
window.onload = function(){ | |
if(document.querySelector('ul.pl-2.nav.nav-navbar')){ | |
function addMastodonEmbed(){ | |
const embed1 = "<iframe src='"; | |
const embed2 = "/embed' class='mastodon-embed' style='max-width: 100%; border: 0' width='700' allowfullscreen='allowfullscreen'></iframe><br>"; | |
tootlink = window.prompt("トゥートのURLを入力",""); | |
if(!tootlink){return} | |
appContainer.componentInstances.PageEditor.editor.insertText(embed1 + tootlink + embed2); | |
} |
{ | |
"name": "Cure aqua dark", | |
"author": "karasugawasu", | |
"desc": "あおいだーくてーま", | |
"base": "dark", | |
"vars": { | |
"primary": "rgb(8, 0, 128)", | |
"secondary": "rgb(145, 193, 255)", | |
"text": "rgb(8, 0, 128)", | |
}, |
// ==UserScript== | |
// @name Note間のマージンをちっちゃくするやつ | |
// @namespace https://mstdn.precure.fun/@karasu_sue | |
// @version 0.0.5 | |
// @description Note間のマージンをちっちゃくするやつ | |
// @author Sue Karasugawa https://mstdn.precure.fun/@karasu_sue | |
// @match https://misskey.xn--krsgw--n73t.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { |
// ==UserScript== | |
// @name タグ固定するやつ(Misskey) | |
// @namespace https://mstdn.precure.fun/@karasu_sue | |
// @version 1.0.0β | |
// @description タグ固定するやつ(Misskey) | |
// @author Sue Karasugawa https://mstdn.precure.fun/@karasu_sue | |
// @match https://misskey.xn--krsgw--n73t.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { |
// ==UserScript== | |
// @name ウィジェットを旧デザインにするやつ | |
// @version 0.0.1 | |
// @description ウィジェットを旧デザインにするやつ | |
// @match https://misskey.xn--krsgw--n73t.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var koteitag_list_index = 0; |