Omnibox Launcher

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

Omnibox Launcher क्या है?

Omnibox Launcher Christopher Ciufo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides the ability to search and launch installed chrome apps from the Omnibox"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Omnibox Launcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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