Link Shortcuts

Access common urls by typing a shortcut name

What is Link Shortcuts?

Link Shortcuts is a Chrome extension developed by pminkov, and its main feature is "Access common urls by typing a shortcut name".

Extension Screenshots

screenshot

Download Link Shortcuts Extension CRX File

Download Link Shortcuts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        No need to remember long web addresses or look through your bookmarks. Just associate a web page with a short name and go to the page by typing the short name.

Type the keyword "go", tab/space and start typing.

To add a new shortcut, click on the extension icon and add it in the menu.                    

Extension Basic Information

Name Link Shortcuts Link Shortcuts
ID bceohjonbodagliebplenbfjlapegaei
Official URL https://chrome.google.com/webstore/detail/link-shortcuts/bceohjonbodagliebplenbfjlapegaei
Description Access common urls by typing a shortcut name
File Size 66.75 KB
Installation Count 73
Current Version 1.0.9
Last Updated 2017-02-17
Publish Date 2017-02-17
Rating 4.00/5 Total 4 Ratings
Developer pminkov
Payment Type free
Extension Website https://github.com/pminkov/chrome-link-shortcuts
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Shortcuts",
    "description": "Access common urls by typing a shortcut name",
    "version": "1.0.9",
    "omnibox": {
        "keyword": "go"
    },
    "browser_action": [],
    "icons": {
        "16": "icons\/Icons-03-16x16.png",
        "48": "icons\/Icons-03-48x48.png",
        "128": "icons\/Icons-03-128x128.png"
    },
    "background": {
        "scripts": [
            "message_names.js",
            "bookmark_utils.js",
            "dataset.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "message_names.js",
                "content.js"
            ]
        }
    ],
    "commands": {
        "go": {
            "suggested_key": {
                "default": "Ctrl+K",
                "mac": "MacCtrl+K"
            },
            "description": "Go to a page"
        }
    },
    "web_accessible_resources": [
        "popup.html"
    ],
    "permissions": [
        "tabs",
        "storage",
        "bookmarks"
    ]
}