Omnibox Launcher

Provides the ability to search and launch installed chrome apps from the Omnibox

Omnibox Launcherคืออะไร?

Omnibox Launcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Christopher Ciufo และคุณลักษณะหลักของมันคือ "Provides the ability to search and launch installed chrome apps from the Omnibox"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Omnibox Launcher

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}