Fullscreen
Minimalist fullscreen extension.
What is Fullscreen?
Fullscreen is a Chrome extension developed by Thor Galle, and its main feature is "Minimalist fullscreen extension.".
Extension Screenshots
Download Fullscreen Extension CRX File
Download Fullscreen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension does one thing: it adds real full screen functionality to every web page. Title bars will be hidden too! 💡 Usage: — To toggle full screen on/of: click the extension button or press Ctrl+⇧+O or ⌘+⇧+O — To leave full screen: press Esc ❤️ No special permissions required. No trackers, no safety risks, no bloat, no nothing. Super simple, lightweight (only 7kb) and open-source. Inspired by Mark Tiedemann who developed an initial no-nonsense fullscreen extension for Firefox. Find the code here: https://github.com/th0rgall/fullscreen
Extension Basic Information
Name | Fullscreen |
ID | fkbigbddainndbfabdcmbhgionobgina |
Official URL | https://chromewebstore.google.com/detail/fullscreen/fkbigbddainndbfabdcmbhgionobgina |
Description | Minimalist fullscreen extension. |
File Size | 6.9 KB |
Installation Count | 1,483 |
Current Version | 0.3.1 |
Last Updated | 2020-02-07 |
Publish Date | 2020-02-07 |
Rating | 5.00/5 Total 14 Ratings |
Developer | Thor Galle |
Payment Type | free |
Extension Website | https://github.com/th0rgall/fullscreen |
Help Page URL | https://github.com/th0rgall/fullscreen |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Minimalist fullscreen extension.", "manifest_version": 2, "name": "Fullscreen", "version": "0.3.1", "permissions": [ "activeTab" ], "homepage_url": "https:\/\/github.com\/th0rgall\/fullscreen", "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "512": "icon.png" }, "browser_action": { "default_title": "Fullscreen this page" }, "commands": { "toggle-fullscreen": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Toggle fullscreen on this page" } } } |