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”。

扩展截图

screenshot
screenshot

下载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 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"
        ]
    }
}