This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:u=location.href.match(/https:\/\/twitter\.com\/([0-9a-zA-Z_]+)/)[1];window.open(`https://twitter.com/search?q=from%3A${u}%20filter%3Amedia&src=typed_query&f=live`); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Twitter Tweet Scroll Position Memorizer | |
// @namespace https://estar-lab.net/ | |
// @version 1.0 | |
// @description Memorizing tweet scroll position | |
// @author silver-mixer | |
// @match https://twitter.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// ==UserScript== | |
// @name RT Time Display | |
// @version 6 | |
// @description RTされた時間を表示します。 | |
// @author silver-mixer | |
// @match https://twitter.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
const VERSION = "v1"; | |
let id = location.href.match(/\?list=([a-zA-Z0-9-_]+)($|&)/)[1]; | |
let title = document.getElementById('text-displayed').innerText; | |
let created_at = Date.now(); | |
let videos = []; | |
document.querySelectorAll('ytd-playlist-video-renderer').forEach(e => { | |
videos.push({ | |
title: e.querySelector('#video-title').innerText, | |
id: e.querySelector('a').href.match(/\?v=([a-zA-Z0-9-_]+)($|&)/)[1], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// ==UserScript== | |
// @name Twitter User ID Extractor | |
// @version 4 | |
// @description ユーザの固有IDを抽出します。 | |
// @author silver-mixer | |
// @match https://twitter.com/* | |
// @grant none | |
// ==/UserScript== | |
try{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Increase YouTube thumbnail v1 */ | |
ytd-rich-grid-renderer{ | |
--ytd-rich-grid-items-per-row: 4 !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
// The following utility function are taken from EnhancedDiscord, developed by | |
// joe27g <https://github.com/joe27g>, and licensed under an MIT License. | |
// All credit goes to joe27g for the breadth of the work regarding accessing | |
// webpack modules at runtime. | |
// | |
// --- | |
// MIT License | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public boolean isContains(Object o1, Object... obj){ | |
for(Object o: obj){ | |
if(o1.equals(o))return true; | |
} | |
return false; | |
} |