筋トレアプリで「ずんだもん」の声を使用するには、VoiceVoxという音声合成ソフトウェアを別途インストールして実行する必要があります。
- VoiceVoxの公式サイトからソフトウェアをダウンロードします:
// ==UserScript== | |
// @name Hide retweets | |
// @name:ja リツイート非表示 | |
// @namespace twitter_mute_retweets | |
// @version 1.1 | |
// @description Hide tweets not belonging to currently shown user | |
// @description:ja 閲覧中のユーザがつぶやいていないツイートを非表示にする | |
// @author roflsunriz | |
// @license MIT | |
// @match https://x.com/* |
// ==UserScript== | |
// @name Twitter文章完全ミュート | |
// @namespace twitter_mute_filter | |
// @version 1.2 | |
// @description 公式ミュート機能は単語(とTwitterが認識した語句)にしか効きません。ブラウザ版Twitterでこれを解決します。正規表現対応、設定メニュー付き。シャドウDOM対応でページスタイルと衝突しません。 | |
// @author roflsunriz | |
// @match https://twitter.com/* | |
// @match https://x.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant GM_getValue |
// ==UserScript== | |
// @name Twitter/X Media Filter | |
// @namespace TwitterMediaFilter | |
// @version 1.2 | |
// @description タイムライン/リスト/詳細ページで画像/動画を含まないツイートを非表示にする | |
// @author roflsunriz | |
// @match https://twitter.com/* | |
// @match https://x.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant GM_getValue |
import tkinter as tk | |
from tkinter import ttk | |
import threading | |
import time | |
import importlib | |
import subprocess | |
import sys | |
# 必要なパッケージの自動インストール | |
def install_package(package): |
// ==UserScript== | |
// @name ChatGPT サマリーコピー | |
// @namespace chatgpt-copy-summary | |
// @version 1.1 | |
// @description ChatGPTのサマリーを「Q.[ユーザーの入力] A.[ChatGPTの応答先頭300文字]... [URL]」形式でコピーします | |
// @author roflsunriz | |
// @match https://chatgpt.com/* | |
// @match https://chat.openai.com/* | |
// @match https://chat.com/* | |
// @icon https://chat.openai.com/favicon.ico |
// ==UserScript== | |
// @name ChatGPT 生成完了通知 | |
// @namespace chatgpt-generation-complete | |
// @version 1.2 | |
// @description ChatGPT の回答生成が完了したらプッシュ通知でお知らせ | |
// @author roflsunriz | |
// @match https://chatgpt.com/* | |
// @match https://chat.openai.com/* | |
// @match https://chat.com/* | |
// @icon https://chat.openai.com/favicon.ico |
// ==UserScript== | |
// @name Twitter Thread Copier | |
// @namespace twitterThreadCopier | |
// @version 4.1 | |
// @description Copy tweets and replies from a Twitter/X thread with formatting, supports auto-expanding "Show more" texts, fixing shortened URLs and including quoted tweets | |
// @author roflsunriz | |
// @match https://twitter.com/* | |
// @match https://x.com/* | |
// @connect translate.googleapis.com | |
// @connect *.googleapis.com |
筋トレアプリで「ずんだもん」の声を使用するには、VoiceVoxという音声合成ソフトウェアを別途インストールして実行する必要があります。
#!/usr/bin/env python3 | |
""" | |
LLM context compression GUI | |
This program provides a GUI interface for compressing text using LZMA2 compression. | |
It displays compression ratios and provides the compressed result with decompression | |
instructions for LLMs. | |
""" | |
import lzma | |
import base64 |
// ==UserScript== | |
// @name ブック風マンガビューア | |
// @namespace bookStyleMangaViewer | |
// @version 7.3 | |
// @description ウェブページの画像を見開き形式で表示するビューア(シャドウDOM対応) | |
// @author roflsunriz | |
// @match *://*/* | |
// @grant GM_registerMenuCommand | |
// @require https://unpkg.com/react@18/umd/react.production.min.js | |
// @require https://unpkg.com/react-dom@18/umd/react-dom.production.min.js |