Skip to content

Instantly share code, notes, and snippets.

View kdmsnr's full-sized avatar

Masanori Kado kdmsnr

View GitHub Profile
@kdmsnr
kdmsnr / remove-watched-programs-for-tver.tampermonkey.user.js
Last active March 7, 2025 23:59
Remove watched programs for TVer
// ==UserScript==
// @name Remove watched programs for TVer
// @namespace https://kdmsnr.com
// @version 0.1.3
// @description Remove watched programs from the mypage of TVer
// @author kdmsnr
// @match https://tver.jp/mypage/fav
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// @run-at document-end
@kdmsnr
kdmsnr / gist:f310df591d6de92b11cf64330af2ab02
Last active January 4, 2024 10:20
東京の美術館の展示会を表示するChromeのブックマーク
data:text/html;utf-8,<!DOCTYPE html><body><script>setTimeout(function(){const now = new Date();const year = now.getFullYear();const month = (now.getMonth() + 1).toString().padStart(2, "0");const date = now.getDate().toString().padStart(2, "0");const url = `https://artscape.jp/exhibition/schedule/exhi_schedule_result.php?pref=東京都&Year=${year}&Month=${month}&Day=${date}&period=1&selorder=1&chk_pic=1&f_submit=on`;window.location.replace(url) }, 1);</script></body>
@kdmsnr
kdmsnr / md-wiki-link.el
Last active December 29, 2023 19:09
Markdown で [[WikiLink]] を開きたい
@kdmsnr
kdmsnr / main.ts
Last active May 29, 2024 23:30
obsidianでTODO.mdを左のアイコンから開きたい
import { App, Plugin, Notice } from 'obsidian';
export default class MySidebarPlugin extends Plugin {
async onload() {
this.addRibbonIcon('checkmark', 'Open TODO Page', async () => {
const file = this.app.vault.getAbstractFileByPath('TODO.md');
if (file) {
this.app.workspace.getLeaf().openFile(file);
} else {
new Notice('File not found');