Overleaf Commander
Omnibar for Overleaf.com
Overleaf Commanderとは何ですか?
Overleaf Commanderはfawindによって開発されたChromeの拡張機能で、その主な機能は「Omnibar for Overleaf.com」です。
拡張機能のスクリーンショット
Overleaf Commander拡張機能のCRXファイルをダウンロード
Overleaf Commander拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |