Link Collector

Quickly view and access all the links on any page.

什麼是Link Collector?

Link Collector是由attilathedud開發的Chrome擴展程式,該擴展的主要功能是“Quickly view and access all the links on any page.”。

擴展截圖

screenshot
screenshot

下載Link Collector擴展crx文件

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

擴展使用說明

                        Quickly view and access all the links on any page. Use simple key-binds to easily page and navigate to them. Activation is as easy as Alt + i.

Have a specific link you want to find? Use Alt + f to search for it.

Support and code can be found at https://github.com/attilathedud/Link_Collector

v1.1.0
- Added the ability to change the hotkey. Hotkey can now be adjusted from the chrome://extensions page.
- Added the ability to click the navigation arrows to page through results.
- Added the ability to disable the extension.
- Fixed a bug where alt+enter would trigger a download if a page element was selected.                    

擴展基本資訊

名稱 Link Collector Link Collector
ID mkfggmeifjpmndaflbgcnoocjikgblob
官方網址 https://chromewebstore.google.com/detail/link-collector/mkfggmeifjpmndaflbgcnoocjikgblob
簡介 Quickly view and access all the links on any page.
檔案大小 24.44 KB
安裝次數 547
目前版本 1.1.0
更新時間 2018-02-01
上架時間 2018-02-01
評分 5.00/5 共 1 次評分
開發者 attilathedud
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/attilathedud/Link_Collector
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Collector",
    "short_name": "LinkCollector",
    "version": "1.1.0",
    "description": "Quickly view and access all the links on any page.",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "imgs\/icon16.png",
        "32": "imgs\/icon32.png",
        "48": "imgs\/icon48.png",
        "64": "imgs\/icon64.png",
        "128": "imgs\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/injected.css"
            ],
            "js": [
                "scripts\/external\/mousetrap.min.js",
                "scripts\/injected.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Link Collector",
        "default_popup": "pages\/popup_settings.html"
    },
    "commands": {
        "toggle_panel": {
            "description": "Toggle the display of the panel",
            "suggested_key": "Alt+I"
        }
    }
}