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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}