Skip to content

Instantly share code, notes, and snippets.

@bczhc
Last active March 14, 2025 08:27
Show Gist options
  • Save bczhc/679fc25e019a7a41b472ded9cc9a8348 to your computer and use it in GitHub Desktop.
Save bczhc/679fc25e019a7a41b472ded9cc9a8348 to your computer and use it in GitHub Desktop.
LLM网站在Firefox截图方法 #llm
  • Grok3: 把.h-full元素CSS中height: 100%删去或禁用。

  • DeepSeek:

    image

    scroll的这个标签CSS position: absolute删去或禁用掉。

    image

    这个根下的第一个标签中CSS overflow: hidden删去或禁用掉。

DeepSeek

Array.from(document.querySelectorAll('div')).filter(x => window.getComputedStyle(x)['position'] === 'absolute' && window.getComputedStyle(x)['min-height'] === '100%')[0].style['position']='inherit';
Array.from(document.querySelectorAll('#root>*')).filter(x => window.getComputedStyle(x)['overflow'] === 'hidden')[0].style['overflow']='inherit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment