Follow link

Follow any link with simple shortcuts

O que é Follow link?

Follow link é uma extensão do Chrome desenvolvida por Felix Bechstein, e sua principal característica é "Follow any link with simple shortcuts".

Baixar o arquivo CRX da Extensão Follow link

Baixe arquivos de extensão Follow link 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

                        Follow Link is a simple chrome extension for following links on any website with your keyboard.

1. Configure shortcuts: `chrome://extensions/configureCommands`
2. Press the shortcut from above to enter the follow mode.
3. Enter any part of the links text for selection.
4. Press `Tab` for cycling through selected links.
   Press `Shift+Tab` for cycling backwards.
5. Press `Enter` for opening the selected link.                    

Informações Básicas da Extensão

Nome Follow link Follow link
ID pelfimbllmbmenkdhlfahedggmkobhmp
URL Oficial https://chromewebstore.google.com/detail/follow-link/pelfimbllmbmenkdhlfahedggmkobhmp
Descrição Follow any link with simple shortcuts
Tamanho do Arquivo 9.97 KB
Contagem de Instalações 19
Versão Atual 0.3
Última Atualização 2017-11-19
Data de Publicação 2017-11-19
Desenvolvedor Felix Bechstein
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/felixb/followlink
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Follow link",
    "version": "0.3",
    "description": "Follow any link with simple shortcuts",
    "homepage_url": "https:\/\/github.com\/felixb\/followlink",
    "permissions": [
        "tabs",
        "webNavigation",
        ""
    ],
    "commands": {
        "follow-link-same-tab": {
            "suggested_key": {
                "default": "Ctrl+G"
            },
            "description": "Follow link in same tab"
        },
        "follow-link-new-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+G"
            },
            "description": "Follow link in new tab"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/follow_link.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}