Omnibox Launcher
Provides the ability to search and launch installed chrome apps from the Omnibox
Qu'est-ce que Omnibox Launcher ?
Omnibox Launcher est une extension Chrome développée par Christopher Ciufo, et sa fonction principale est "Provides the ability to search and launch installed chrome apps from the Omnibox".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Omnibox Launcher
Téléchargez les fichiers d'extension Omnibox Launcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Omnibox Launcher |
ID | eafjaeainlaojdehnppfcahiojdgjoho |
URL Officiel | https://chromewebstore.google.com/detail/omnibox-launcher/eafjaeainlaojdehnppfcahiojdgjoho |
Description | Provides the ability to search and launch installed chrome apps from the Omnibox |
Taille du Fichier | 37.99 KB |
Nombre d'Installations | 442 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2019-03-08 |
Date de Publication | 2019-03-08 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Christopher Ciufo |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |