Kill-Stick-Shortcut
基于 Alisdair McDiarmid 的 Killsticky bookmarklet 的浏览器扩展,它添加了一个键盘快捷键(在 Windows 和 Linux 上为Alt+Period ,在 macOS 上为Cmd+Period ),它在当前页面上运行这段 JavaScript:
const elements = document . querySelectorAll ( 'body *' )
for ( let i = 0 ; i < elements . length ; i ++ ) {
const el = elements [ i ]
const { display , position } = window . getComputedStyle ( el )
if ( ( position === 'fixed
1