Follow link

Follow any link with simple shortcuts

Follow linkとは何ですか?

Follow linkはFelix Bechsteinによって開発されたChromeの拡張機能で、その主な機能は「Follow any link with simple shortcuts」です。

Follow link拡張機能のCRXファイルをダウンロード

Follow link拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Follow link Follow link
ID pelfimbllmbmenkdhlfahedggmkobhmp
公式URL https://chromewebstore.google.com/detail/follow-link/pelfimbllmbmenkdhlfahedggmkobhmp
説明 Follow any link with simple shortcuts
ファイルサイズ 9.97 KB
インストール数 19
現在のバージョン 0.3
最終更新日 2017-11-19
公開日 2017-11-19
開発者 Felix Bechstein
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/felixb/followlink
対応言語 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
        }
    ]
}