Follow link

Follow any link with simple shortcuts

Cos'è Follow link?

Follow link è un'estensione di Chrome sviluppata da Felix Bechstein, e la sua funzione principale è "Follow any link with simple shortcuts".

Scarica il file CRX dell'estensione Follow link

Scarica i file di estensione Follow link 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Follow link Follow link
ID pelfimbllmbmenkdhlfahedggmkobhmp
URL Ufficiale https://chromewebstore.google.com/detail/follow-link/pelfimbllmbmenkdhlfahedggmkobhmp
Descrizione Follow any link with simple shortcuts
Dimensione del File 9.97 KB
Conteggio Installazioni 19
Versione Corrente 0.3
Ultimo Aggiornamento 2017-11-19
Data di Pubblicazione 2017-11-19
Sviluppatore Felix Bechstein
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/felixb/followlink
Lingue Supportate 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
        }
    ]
}