[過去ログ]
Firefox userChrome.js greasemonkeyスクリプトスレ44 (1002レス)
Firefox userChrome.js greasemonkeyスクリプトスレ44 http://egg.5ch.net/test/read.cgi/software/1710342779/
上
下
前次
1-
新
通常表示
512バイト分割
レス栞
抽出解除
必死チェッカー(本家)
(べ)
自ID
レス栞
あぼーん
このスレッドは過去ログ倉庫に格納されています。
次スレ検索
歴削→次スレ
栞削→次スレ
過去ログメニュー
323: 名無しさん@お腹いっぱい。 [sage] 2024/05/12(日) 18:52:42.15 ID:ibBKZZ/g0 Googleイメージ検索結果ページで各サムネイル上に画像サイズを表示するスクリプトなのですが、うまく動きません。 書き換え方をどなたか教えて下さい。(改行が多いので2回に分けています) (function () { 'use strict'; const observer = new MutationObserver((mutationsList) => { for (let mutation of mutationsList) { if (mutation.type === 'childList') { const thumbnails = document.querySelectorAll('a[jsname="hSRGPd"]'); thumbnails.forEach((thumbnail) => { if (!thumbnail.querySelector('.img-dims')) { const width = thumbnail.dataset.ow; const height = thumbnail.dataset.oh; const dimension = document.createElement('div'); dimension.classList.add('img-dims'); dimension.textContent = `${width} x ${height}`; thumbnail.appendChild(dimension); } }); } } }); http://egg.5ch.net/test/read.cgi/software/1710342779/323
324: 名無しさん@お腹いっぱい。 [sage] 2024/05/12(日) 18:52:50.83 ID:ibBKZZ/g0 続きです。 observer.observe(document.body, { childList: true, subtree: true, }); GM_addStyle(` .img-dims { position: absolute; bottom: 2px; right: 2px; padding: 2px; background-color: rgba(0, 0, 0, 0.5); color: #fff; font-size: 10px; font-weight: bold; line-height: 1; z-index: 999; } `); })(); http://egg.5ch.net/test/read.cgi/software/1710342779/324
メモ帳
(0/65535文字)
上
下
前次
1-
新
書
関
写
板
覧
索
設
栞
歴
スレ情報
赤レス抽出
画像レス抽出
歴の未読スレ
AAサムネイル
Google検索
Wikipedia
ぬこの手
ぬこTOP
0.039s