Custom Chrome Shortcut Manager

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

Custom Chrome Shortcut Managerとは何ですか?

Custom Chrome Shortcut Managerはhttps://swsmith.ccによって開発されたChromeの拡張機能で、その主な機能は「To use, type 'go' into the search bar.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Custom Chrome Shortcut Manager拡張機能のCRXファイルをダウンロード

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
Eメール [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'"
}