Overleaf Commander
Omnibar for Overleaf.com
Overleaf Commander là gì?
Overleaf Commander là một tiện ích mở rộng Chrome được phát triển bởi fawind, và tính năng chính của nó là "Omnibar for Overleaf.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Overleaf Commander
Tải xuống các tệp mở rộng Overleaf Commander dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Overleaf Commander |
ID | bmlefjcamijlejhefedobjohbiekkemb |
URL Chính Thức | https://chromewebstore.google.com/detail/overleaf-commander/bmlefjcamijlejhefedobjohbiekkemb |
Mô tả | Omnibar for Overleaf.com |
Kích Thước Tệp | 94.86 KB |
Số Lần Cài Đặt | 543 |
Phiên Bản Hiện Tại | 0.1.4 |
Cập Nhật Lần Cuối | 2021-02-18 |
Ngày Phát Hành | 2019-10-25 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | fawind |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/fawind/overleaf-commander |
URL Trang Trợ Giúp | https://github.com/fawind/overleaf-commander/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |