Follow link

Follow any link with simple shortcuts

Co je Follow link?

Follow link je rozšíření Chrome vyvinuté Felix Bechstein, a jeho hlavní funkcí je „Follow any link with simple shortcuts“.

Stáhnout soubor CRX rozšíření Follow link

Stáhněte si soubory rozšíření Follow link ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Follow link Follow link
ID pelfimbllmbmenkdhlfahedggmkobhmp
Oficiální URL https://chromewebstore.google.com/detail/follow-link/pelfimbllmbmenkdhlfahedggmkobhmp
Popis Follow any link with simple shortcuts
Velikost souboru 9.97 KB
Počet instalací 19
Aktuální Verze 0.3
Poslední Aktualizace 2017-11-19
Datum Vydání 2017-11-19
Vývojář Felix Bechstein
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/felixb/followlink
Podporované Jazyky 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
        }
    ]
}