Linkclump

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

Linkclump क्या है?

Linkclump benblack86 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you open, copy or bookmark multiple links at the same time."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Linkclump एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}