Follow link

Follow any link with simple shortcuts

Wat is Follow link?

Follow link is een Chrome-extensie ontwikkeld door Felix Bechstein, en de belangrijkste functie is "Follow any link with simple shortcuts".

Download het CRX-bestand van de extensie Follow link

Download Follow link-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

                        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.                    

Basisinformatie over de Extensie

Naam Follow link Follow link
ID pelfimbllmbmenkdhlfahedggmkobhmp
Officiële URL https://chromewebstore.google.com/detail/follow-link/pelfimbllmbmenkdhlfahedggmkobhmp
Beschrijving Follow any link with simple shortcuts
Bestandsgrootte 9.97 KB
Aantal Installaties 19
Huidige Versie 0.3
Laatst Bijgewerkt 2017-11-19
Publicatiedatum 2017-11-19
Ontwikkelaar Felix Bechstein
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/felixb/followlink
Ondersteunde Talen 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
        }
    ]
}