Link Shortcuts

Access common urls by typing a shortcut name

Cos'è Link Shortcuts?

Link Shortcuts è un'estensione di Chrome sviluppata da pminkov, e la sua funzione principale è "Access common urls by typing a shortcut name".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Link Shortcuts

Scarica i file di estensione Link Shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Link Shortcuts Link Shortcuts
ID bceohjonbodagliebplenbfjlapegaei
URL Ufficiale https://chrome.google.com/webstore/detail/link-shortcuts/bceohjonbodagliebplenbfjlapegaei
Descrizione Access common urls by typing a shortcut name
Dimensione del File 66.75 KB
Conteggio Installazioni 73
Versione Corrente 1.0.9
Ultimo Aggiornamento 2017-02-17
Data di Pubblicazione 2017-02-17
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore pminkov
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/pminkov/chrome-link-shortcuts
Lingue Supportate 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"
    ]
}