Overleaf Commander
Omnibar for Overleaf.com
Qu'est-ce que Overleaf Commander ?
Overleaf Commander est une extension Chrome développée par fawind, et sa fonction principale est "Omnibar for Overleaf.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Overleaf Commander
Téléchargez les fichiers d'extension Overleaf Commander au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Overleaf Commander |
ID | bmlefjcamijlejhefedobjohbiekkemb |
URL Officiel | https://chromewebstore.google.com/detail/overleaf-commander/bmlefjcamijlejhefedobjohbiekkemb |
Description | Omnibar for Overleaf.com |
Taille du Fichier | 94.86 KB |
Nombre d'Installations | 543 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2021-02-18 |
Date de Publication | 2019-10-25 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | fawind |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/fawind/overleaf-commander |
URL de la Page d'Aide | https://github.com/fawind/overleaf-commander/issues |
Langues Prises en Charge | 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" } } |