Omnibox Launcher
Provides the ability to search and launch installed chrome apps from the Omnibox
Omnibox Launcherとは何ですか?
Omnibox LauncherはChristopher Ciufoによって開発されたChromeの拡張機能で、その主な機能は「Provides the ability to search and launch installed chrome apps from the Omnibox」です。
拡張機能のスクリーンショット
Omnibox Launcher拡張機能のCRXファイルをダウンロード
Omnibox Launcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
UPDATE (Version 2.0): Ability to search chrome built in pages (chrome:// pages) and not search extensions since they can't be launched. Omnibox Launcher allows you to search and launch any of your installed Google Chrome Apps or built in chrome pages. Typing "run" into the omnibox followed by the TAB/SPACE key will start the Omnibox Launcher. Entering text will filter through all your Apps and chrome pages and selecting one will launch it. This extension leverages the Fuse.js fuzzy search JavaScript library created by Kiro Risk (http://kiro.me/projects/fuse.html). Icons made by Freepik from www.flaticon.com Copyright Christopher Ciufo 2015 Protected under the MIT License
拡張機能の基本情報
名前 | Omnibox Launcher |
ID | eafjaeainlaojdehnppfcahiojdgjoho |
公式URL | https://chromewebstore.google.com/detail/omnibox-launcher/eafjaeainlaojdehnppfcahiojdgjoho |
説明 | Provides the ability to search and launch installed chrome apps from the Omnibox |
ファイルサイズ | 37.99 KB |
インストール数 | 442 |
現在のバージョン | 2.0 |
最終更新日 | 2019-03-08 |
公開日 | 2019-03-08 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Christopher Ciufo |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Omnibox Launcher", "author": "Christopher Ciufo", "version": "2.0", "description": "Provides the ability to search and launch installed chrome apps from the Omnibox", "icons": { "16": "assets\/icons\/icon_16.png", "24": "assets\/icons\/icon_24.png", "32": "assets\/icons\/icon_32.png", "64": "assets\/icons\/icon_64.png", "128": "assets\/icons\/icon_128.png" }, "permissions": [ "management" ], "omnibox": { "keyword": "run" }, "background": { "persistent": false, "scripts": [ "lib\/fuse.min.js", "lib\/lodash.min.js", "background.js" ] } } |