Tab Manager
Manage tabs inside fullscreen mode
What is Tab Manager?
Tab Manager is a Chrome extension developed by Mark Hillman, and its main feature is "Manage tabs inside fullscreen mode".
Extension Screenshots
Download Tab Manager Extension CRX File
Download Tab Manager 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
A Tab manager designed for use in fullscreen mode (F11). This extension provides a minimalist way of changing, deleting and creating new tabs from within fullscreen mode. When the extension is installed just press CTRL + SHIFT + Y to open up the tab manager. Navigating webpages in fullscreen has never been this easy!
Extension Basic Information
Name | Tab Manager |
ID | joedmpmimnhapomaphaoohgaipeajiji |
Official URL | https://chromewebstore.google.com/detail/tab-manager/joedmpmimnhapomaphaoohgaipeajiji |
Description | Manage tabs inside fullscreen mode |
File Size | 11.19 KB |
Installation Count | 346 |
Current Version | 2.0.0 |
Last Updated | 2018-10-16 |
Publish Date | 2018-10-16 |
Rating | 4.75/5 Total 8 Ratings |
Developer | Mark Hillman |
[email protected] | |
Payment Type | free |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Manager", "version": "2.0.0", "manifest_version": 2, "description": "Manage tabs inside fullscreen mode", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png" }, "browser_action": { "default_title": "Tab Manager", "default_popup": "manager.html" }, "options_page": "options.html", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+Y", "linux": "Ctrl+Shift+Y" } } }, "permissions": [ "tabs", "storage" ] } |