🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/18 22:01:22
🔄 下次更新时间:2026/01/18 23:01:22
手动刷新缓存

Element Fullscreen

Fullscreen any element on a webpage

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

Author
Shaun Mitchell
Daily installs
0
Total installs
179
Ratings
1 0 0
Version
0.3
Created
2020-08-29
Updated
2020-12-10
Size
7.74 KB
License
WTFPL
Applies to
All sites

Element-F

Element fullscreen

This userscript allows you to full screen any element on the page with a click! Focus on the main content of an article, fullscreen gifs or videos even if they don't have a fullscreen option, zoom in on pictures, etc...

Steps

  1. Press shift-ctrl-f to toggle element selection mode on. The cursor will appear as crosshairs, and the target element will have a slight box-shadow around it
  2. Once you've got the element you want selected, just click!

Customization

You can easily customize the keypress, the style applied to focused elements, and the style applied to the fullscreen element

Edit the lines in the following sections to change those options

Selection Mode Keypress

var toggleElementSelectionKey = "F";
var toggleElementSelectionAlt = false;
var toggleElementSelectionCtrl = true;

Target Element Style

var focusedStyle = `box-shadow: 0 3px 6px rgba(0,0,0,0.16),
                                0 3px 6px rgba(0,0,0,0.23),
                                0 3px 6px rgba(255,255,255,0.16),
                                0 3px 6px rgba(255,255,255,0.23) !important;`;

Fullscreen Element Style

var fullScreenStyle = "padding: 1em !important;";

Error reporting

I make no promises about prompt replies or maintenance, but if you run into an issue, please follow these steps, and I'll try to look into it:

  1. Set DEBUG (immediately under the metadata block) to true: var DEBUG = true;
  2. Launch your browser's javascript console (see this page for help doing so)
  3. Repeat the steps that caused the issue
  4. Take a screenshot of the console with the Element-F debug messages
  5. Send me an email (see @author) with the subject "Element-F Issue" and the screenshots attached

TODO

  • [ ] Update configuration settings to use GM_config
  • [ ] Create Chrome plugin
  • [ ] Create Firefox plugin