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 24, 2025 14:18
Twitterのタイムラインをできるだけ広げて表示するカスタムCSS。いくつか要素非表示もしてます。
/*--------------------------------------
フォント
--------------------------------------*/
.r-1k78y06,
.r-1qd0xha,
.r-1tl8opc,
.r-fm7h5w,
.errorContainer{
font-family: 'Moralerspace Argon NF',"Segoe UI",Meiryo,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
}
@hiko-p
hiko-p / mastodon-url-share-with-hashtags.js
Last active November 14, 2025 07:42
閲覧中のWebページをmastodonに共有するためのブックマークレット。デフォルト付与するハッシュタグを決めておいたり、タイトルに含まれるハッシュタグなんかもカバーします。
javascript: (function () {
let title = document.title ? document.title : document.location.pathname.split('/').pop();
const url = document.URL;
const hashtagsearch = /\s*#\S+/g;
const hashsearch = /#/g;
const atsearch = /@/g;
/*
* 投稿先サーバFQDN
* 利用されているサーバに合わせて書き換えてください