imgタグのalt属性が未指定の要素を赤くハイライトします。指定されていたら緑色でハイライトします。一...
(()=>{const highlight=element=>{element.querySelectorAll("img").forEach((img=>{img.style.outline=...
[URL:title=タイトル]という形式でページのタイトルとURLをpromptします
(function(){const content=`[${location.href}:title=${document.title}]`;prompt('',content)})();
[タイトル](URL)という形式でページのタイトルとURLをalertします
(function(){const content="["+document.title+"]("+location.href+")";alert(content)})();
[タイトル URL]という形式でページのタイトルとURLをalertします
(function(){const content="["+document.title+" "+location.href+"]";alert(content)})();
YouTubeの動画の現在位置のスクリーンショットを撮って、新しいタブに表示します。
(()=>{const query='.video-stream.html5-main-video';const video=document.querySelector(query);cons...
Subsonic の #nowplaying を生成してツイートする
(()=>{const d=document.getElementById('playQueue').contentWindow.document;const sn=d.getElementBy...