Skip to content

Instantly share code, notes, and snippets.

View hiko-p's full-sized avatar

hiko hiko-p

View GitHub Profile
@hiko-p
hiko-p / twitter-tweak.user.css
Last active May 13, 2026 17:45
Twitterのタイムラインをできるだけ広げて表示するカスタムCSS。いくつか要素非表示もしてます。
/*--------------------------------------
フォント
--------------------------------------*/
.r-1k78y06,
.r-1qd0xha,
.r-1tl8opc,
.r-fm7h5w,
.errorContainer{
font-family: 'Moralerspace Argon JPDOC',"Segoe UI",Meiryo,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}
@hiko-p
hiko-p / mastodon-url-share-with-hashtags.js
Last active April 19, 2026 12:51
閲覧中のWebページをmastodonに共有するためのブックマークレット。
javascript: (function () {
let title = null;
let sitename = null;
if (document.querySelector("meta[property='og:title']") && document.querySelector("meta[property='og:site_name']")){
title = document.querySelector("meta[property='og:title']").content;
sitename = '【' + document.querySelector("meta[property='og:site_name']").content + '】';
} else {
title = (document.title ? document.title : document.location.pathname.split('/').pop());
}
const url = document.querySelector("meta[property='og:url']") ?