Link Shortcuts

Access common urls by typing a shortcut name

Wat is Link Shortcuts?

Link Shortcuts is een Chrome-extensie ontwikkeld door pminkov, en de belangrijkste functie is "Access common urls by typing a shortcut name".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Link Shortcuts

Download Link Shortcuts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Link Shortcuts Link Shortcuts
ID bceohjonbodagliebplenbfjlapegaei
Officiële URL https://chrome.google.com/webstore/detail/link-shortcuts/bceohjonbodagliebplenbfjlapegaei
Beschrijving Access common urls by typing a shortcut name
Bestandsgrootte 66.75 KB
Aantal Installaties 73
Huidige Versie 1.0.9
Laatst Bijgewerkt 2017-02-17
Publicatiedatum 2017-02-17
Beoordeling 4.00/5 Totaal 4 Beoordelingen
Ontwikkelaar pminkov
Betalingswijze free
Extensiewebsite https://github.com/pminkov/chrome-link-shortcuts
Ondersteunde Talen 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"
    ]
}