Link Collector

Quickly view and access all the links on any page.

Link Collector là gì?

Link Collector là một tiện ích mở rộng Chrome được phát triển bởi attilathedud, và tính năng chính của nó là "Quickly view and access all the links on any page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Link Collector

Tải xuống các tệp mở rộng Link Collector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Link Collector Link Collector
ID mkfggmeifjpmndaflbgcnoocjikgblob
URL Chính Thức https://chromewebstore.google.com/detail/link-collector/mkfggmeifjpmndaflbgcnoocjikgblob
Mô tả Quickly view and access all the links on any page.
Kích Thước Tệp 24.44 KB
Số Lần Cài Đặt 547
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2018-02-01
Ngày Phát Hành 2018-02-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển attilathedud
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/attilathedud/Link_Collector
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}