Overleaf Commander
Omnibar for Overleaf.com
What is Overleaf Commander?
Overleaf Commander is a Chrome extension developed by fawind, and its main feature is "Omnibar for Overleaf.com".
Extension Screenshots
Download Overleaf Commander Extension CRX File
Download Overleaf Commander 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
Omnibar for Overleaf.com. The Overleaf Commander allows you to quickly browse files and run frequently used commands. You can open the omnibar using 'Ctrl+P'. This shortcut can be changed in the Chrome extension settings.
Extension Basic Information
Name | Overleaf Commander |
ID | bmlefjcamijlejhefedobjohbiekkemb |
Official URL | https://chromewebstore.google.com/detail/overleaf-commander/bmlefjcamijlejhefedobjohbiekkemb |
Description | Omnibar for Overleaf.com |
File Size | 94.86 KB |
Installation Count | 543 |
Current Version | 0.1.4 |
Last Updated | 2021-02-18 |
Publish Date | 2019-10-25 |
Rating | 4.00/5 Total 4 Ratings |
Developer | fawind |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/fawind/overleaf-commander |
Help Page URL | https://github.com/fawind/overleaf-commander/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Overleaf Commander", "description": "Omnibar for Overleaf.com", "version": "0.1.4", "content_scripts": [ { "matches": [ "https:\/\/www.overleaf.com\/project\/*" ], "js": [ "contentscript.js" ] } ], "web_accessible_resources": [ "app.js" ], "background": { "scripts": [ "backgroundscript.js" ], "persistent": false }, "commands": { "toggle-omnibar": { "description": "Toggle the Omnibar", "suggested_key": { "default": "Ctrl+P" } } }, "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |