jump

Remember sites using words, not long URLs.

O que é jump?

jump é uma extensão do Chrome desenvolvida por Big Top Labs, e sua principal característica é "Remember sites using words, not long URLs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão jump

Baixe arquivos de extensão jump no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Jump is a Chrome extension made purely for myself because I missed having a link shortener around.

Rather than roll a remote shortener, I decided to write a little extension which uses Chrome sync to store a bunch of key: url pairs. Hit the arrow button to add a new link, or go to the page listing all links. Use ju as your omnibox shortcut to glory.

Yes, for frequently visited sites this isn't much of an improvement over just typing the first few letters of the site into the omnibox. Where I find this kind of shortcut really handy, though, is for URLs like "New Google Drive document" (or a specific doc), or deep-linking into analytics systems, dashboards, etc -- sites where there are a bunch of potential autocompletes and you can't really tell the difference at a glance.                    

Informações Básicas da Extensão

Nome jump jump
ID nnmoidfdhdncdeeficmimjfcdbhaaffi
URL Oficial https://chromewebstore.google.com/detail/jump/nnmoidfdhdncdeeficmimjfcdbhaaffi
Descrição Remember sites using words, not long URLs.
Tamanho do Arquivo 297 KB
Contagem de Instalações 24
Versão Atual 1.0
Última Atualização 2014-01-02
Data de Publicação 2014-01-02
Classificação 4.83/5 Total de 6 Avaliações
Desenvolvedor Big Top Labs
Tipo de Pagamento free
Site da Extensão https://github.com/jennielees/jump
URL da Página de Ajuda https://github.com/jennielees/jump
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "jump",
    "description": "Remember sites using words, not long URLs.",
    "version": "1.0",
    "omnibox": {
        "keyword": "ju"
    },
    "icons": {
        "16": "icon1_16.png",
        "64": "icon1_64.png"
    },
    "background": {
        "scripts": [
            "utils.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon1_64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/fonts.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "sha1.js",
                "utils.js",
                "js\/jquery.js",
                "popup.js",
                "list.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}