Overleaf Commander
Omnibar for Overleaf.com
Overleaf Commander क्या है?
Overleaf Commander fawind द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Omnibar for Overleaf.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Overleaf Commander एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Overleaf Commander |
ID | bmlefjcamijlejhefedobjohbiekkemb |
आधिकारिक URL | https://chromewebstore.google.com/detail/overleaf-commander/bmlefjcamijlejhefedobjohbiekkemb |
विवरण | Omnibar for Overleaf.com |
फ़ाइल का आकार | 94.86 KB |
स्थापना संख्या | 543 |
वर्तमान संस्करण | 0.1.4 |
अंतिम अपडेट | 2021-02-18 |
प्रकाशन तिथि | 2019-10-25 |
रेटिंग | 4.00/5 कुल 4 रेटिंग्स |
डेवलपर | fawind |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/fawind/overleaf-commander |
सहायता पृष्ठ URL | https://github.com/fawind/overleaf-commander/issues |
समर्थित भाषाएँ | 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" } } |