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ファイルをダウンロード

Linkclump拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}