Linkclump

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

Linkclumpคืออะไร?

Linkclump เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benblack86 และคุณลักษณะหลักของมันคือ "Lets you open, copy or bookmark multiple links at the same time."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Linkclump

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}