Quick Link Finder

Chrome-equivalent of Firefox's quick find (links only). You can search and click a link in a web page without using a mouse.

什麼是Quick Link Finder?

Quick Link Finder是由js extensions開發的Chrome擴展程式,該擴展的主要功能是“Chrome-equivalent of Firefox's quick find (links only). You can search and click a link in a web page without using a mouse.”。

擴展截圖

screenshot
screenshot
screenshot

下載Quick Link Finder擴展crx文件

下載Quick Link Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Description:
    You can search and click a link in a web page without using a mouse.
    Chrome-equivalent of Firefox's quick find (links only).

How to Use:

    - type a single quote ( ' ) to start search for a link in a web page

    - hit Enter to click a highlighted link 

    - (or hit Tab to navigate among the matched links)

    - ESC to close the search field 

    - (or it automatically closes itself after 5 sec. of inactivity)

    That's it!

Changes in 1.3.7
 - Added websites to exclude
 - Styling consistency
 - Manifest v2

Changes in 1.0.9
 - img element's alt attribute is also traversed

Changes in 1.1.0
 - it will open a link in a new tab when you hit enter while CTRL is being pressed

Changes in 1.2.0
 - User's preference for link highlight color

Plugins Used:
 - Color Picker - http://acko.net/dev/farbtastic

Any feedback is appreciated. Thank you!                    

擴展基本資訊

名稱 Quick Link Finder Quick Link Finder
ID joilmblholecadnhkhdbmigofeiekplp
官方網址 https://chromewebstore.google.com/detail/quick-link-finder/joilmblholecadnhkhdbmigofeiekplp
簡介 Chrome-equivalent of Firefox's quick find (links only). You can search and click a link in a web page without using a mouse.
檔案大小 1.75 MB
安裝次數 127
目前版本 1.3.11
更新時間 2019-02-21
上架時間 2019-02-20
評分 4.22/5 共 9 次評分
開發者 js extensions
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://aws-website-googlechromeextensionsprivacypolicy-qe7q1.s3-website-us-east-1.amazonaws.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Link Finder",
    "version": "1.3.11",
    "description": "Chrome-equivalent of Firefox's quick find (links only). You can search and click a link in a web page without using a mouse.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "quick-link-finder.css"
            ],
            "js": [
                "lib\/jquery\/jquery-1.5.1.min.js",
                "quick-link-finder.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}