Custom Chrome Shortcut Manager

To use, type 'go' into the search bar.

¿Qué es Custom Chrome Shortcut Manager?

Custom Chrome Shortcut Manager es una extensión de Chrome desarrollada por https://swsmith.cc, y su función principal es "To use, type 'go' into the search bar.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Custom Chrome Shortcut Manager

Descarga archivos de extensión Custom Chrome Shortcut Manager en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        **New in Version 1.1.0**
Ability to remove individual shortcuts!

Define shortcuts to enter in the search bar! This makes getting to your favorite sites a breeze.

Simply add an alias to url pairing in the configuration window, then type 'go' in the search bar.

Press tab and enter the alias of the website you want to visit.

You're then directed the website.

As an added bonus, Omnibox Alias does math. Simply type in a math expression to the search box and it'll suggest the rest.                    

Información Básica de la Extensión

Nombre Custom Chrome Shortcut Manager Custom Chrome Shortcut Manager
ID ijihchgjhagfhdkhagnmlebpepjlecml
URL Oficial https://chromewebstore.google.com/detail/custom-chrome-shortcut-ma/ijihchgjhagfhdkhagnmlebpepjlecml
Descripción To use, type 'go' into the search bar.
Tamaño del Archivo 202 KB
Cantidad de Instalaciones 1,913
Versión Actual 1.1.1
Última Actualización 2022-05-25
Fecha de Publicación 2020-05-04
Calificación 3.23/5 Total de 13 Calificaciones
Desarrollador https://swsmith.cc
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://sean-smith.github.io/chromeshortcuts/index.html
URL de la Página de Ayuda https://github.com/sean-smith/chrome_shortcuts/issues
URL de la Página de Política de Privacidad https://seanssmith.net/copyright.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Chrome Shortcut Manager",
    "short_name": "Omnibox Alias",
    "description": "To use, type 'go' into the search bar.",
    "version": "1.1.1",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Omnibox Alias",
        "default_icon": "img\/terminal_16x16.png",
        "default_popup": "popup.html"
    },
    "omnibox": {
        "keyword": "go"
    },
    "icons": {
        "16": "img\/terminal_16x16.png",
        "48": "img\/terminal_48x48.png",
        "128": "img\/terminal_128x128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'"
}