Overleaf Commander
Omnibar for Overleaf.com
Cos'è Overleaf Commander?
Overleaf Commander è un'estensione di Chrome sviluppata da fawind, e la sua funzione principale è "Omnibar for Overleaf.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Overleaf Commander
Scarica i file di estensione Overleaf Commander in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Overleaf Commander |
ID | bmlefjcamijlejhefedobjohbiekkemb |
URL Ufficiale | https://chromewebstore.google.com/detail/overleaf-commander/bmlefjcamijlejhefedobjohbiekkemb |
Descrizione | Omnibar for Overleaf.com |
Dimensione del File | 94.86 KB |
Conteggio Installazioni | 543 |
Versione Corrente | 0.1.4 |
Ultimo Aggiornamento | 2021-02-18 |
Data di Pubblicazione | 2019-10-25 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | fawind |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/fawind/overleaf-commander |
URL della Pagina di Aiuto | https://github.com/fawind/overleaf-commander/issues |
Lingue Supportate | 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" } } |