Skip to content

Instantly share code, notes, and snippets.

@eai04191
Created June 26, 2025 10:45
Show Gist options
  • Save eai04191/2d332f53e591d8d740975c7032db396c to your computer and use it in GitHub Desktop.
Save eai04191/2d332f53e591d8d740975c7032db396c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Mastodon Share via MenuCommand
// @namespace net.mizle
// @version 1.0.0
// @description Share current page to Mastodon via GM_registerMenuCommand
// @match *://*/*
// @grant GM_registerMenuCommand
// ==/UserScript==
const SERVER = "stellaria.network";
function shareToMastodon() {
let note = window.getSelection().toString();
let noteText = "";
if (note) {
// 改行ごとに "> " を付与
noteText = "\n> " + note.split("\n").join("\n> ");
}
const text = `${document.title}\n${location.href}${noteText}\n`;
const url = `https://${SERVER}/share?text=${encodeURIComponent(text)}`;
window.open(url, "_blank");
}
GM_registerMenuCommand("Share to Mastodon", shareToMastodon);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment