Linkclump

Lets you open, copy or bookmark multiple links at the same time.

Linkclump란 무엇입니까?

Linkclump은(는) benblack86에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lets you open, copy or bookmark multiple links at the same time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Linkclump 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Linkclump gives you the ability to drag a selection box around links using your mouse to quickly open as new tabs, open in new window, save as bookmarks, or copy to clipboard. Similar to Snap Links or Multi Links for Firefox.

FEATURES
- Action: choose to open links as new tabs, into a new window, copy to clipboard or saved to your bookmarks. You can setup multiple actions.

- Activation: choose how to activated the selection box using different mouse and key combinations (including shift/alt/ctrl).

- Smart Select: tries to select only the important links on the page. Turn off this option to open all selected links.

- Auto Scroll: the page will automatically scroll up/down to make it easier to select all the links at once.

- Filter Links: include/exclude links that contain certain words.

- Delay: set a delay between the opening/closing of each tab.

- OS Tested: works on windows, mac and linux operating systems.

Please note that support can not be provided as this is a free extension. Developers are welcome to submit PRs at https://github.com/benblack86/linkclump.                    

확장 프로그램 기본 정보

이름 Linkclump Linkclump
ID lfpjkncokllnfokkgpkobnkbkmelfefj
공식 URL https://chromewebstore.google.com/detail/linkclump/lfpjkncokllnfokkgpkobnkbkmelfefj
설명 Lets you open, copy or bookmark multiple links at the same time.
파일 크기 199 KB
설치 횟수 405,340
현재 버전 2.9.4
최근 업데이트 2023-01-24
출시 날짜 2020-06-21
평점 4.62/5 총 3876 개의 평점
개발자 benblack86
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/benblack86/linkclump
도움말 페이지 URL https://github.com/benblack86/linkclump
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Linkclump",
    "version": "2.9.4",
    "description": "Lets you open, copy or bookmark multiple links at the same time.",
    "background": {
        "scripts": [
            "settings_manager.js",
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "pages\/options.html",
    "icons": {
        "16": "images\/16x16.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "linkclump.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "bookmarks",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "pages\/test_area.html"
    ]
}