Custom Chrome Shortcut Manager

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

Что такое Custom Chrome Shortcut Manager?

Custom Chrome Shortcut Manager - это расширение Chrome, разработанное https://swsmith.cc, и его основная функция - "To use, type 'go' into the search bar.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Custom Chrome Shortcut Manager

Скачайте файлы расширений Custom Chrome Shortcut Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        **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.                    

Основная информация о расширении

Название Custom Chrome Shortcut Manager Custom Chrome Shortcut Manager
ID ijihchgjhagfhdkhagnmlebpepjlecml
Официальный URL https://chromewebstore.google.com/detail/custom-chrome-shortcut-ma/ijihchgjhagfhdkhagnmlebpepjlecml
Описание To use, type 'go' into the search bar.
Размер файла 202 KB
Количество установок 1,913
Текущая Версия 1.1.1
Последнее Обновление 2022-05-25
Дата публикации 2020-05-04
Рейтинг 3.23/5 Всего 13 оценок
Разработчик https://swsmith.cc
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://sean-smith.github.io/chromeshortcuts/index.html
URL страницы помощи https://github.com/sean-smith/chrome_shortcuts/issues
URL страницы политики конфиденциальности https://seanssmith.net/copyright.html
Поддерживаемые языки 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'"
}