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
官方網址 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
電子郵箱 [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
        }
    ]
}