Open Selected Links

Opens multiple links in the selected content in the current or new window or a tab group.

Open Selected Links क्या है?

Open Selected Links Natarajan Krishnaswami द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens multiple links in the selected content in the current or new window or a tab group."।

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

screenshot
screenshot

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

crx प्रारूप में Open Selected Links एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        When viewing a page containing a list of links you want to open, such as a list of references in Wikipedia or a paper, it's convenient to be able to open them all at once rather than opening and dragging one at a time.

This extension adds context menus item for selections to open all the links contained in them in the current window (optionally in a new tab group) or a new window.  

Alternatively, you can bring up the extension's popup menu to choose exactly which links to open (and now, you can also filter the link text with a regular expression!), whether to open them in the current or a new window, and whether to add them to a new or existing tab group. You can also open the tabs "snoozed" to reduce memory footprint prior to reading the tabs.

Finally, you can set up keyboard shortcuts to open selected links with a keystroke.                    

एक्सटेंशन की मूल जानकारी

नाम Open Selected Links Open Selected Links
ID hcihcignkpajeehfnomlncinacagapdf
आधिकारिक URL https://chromewebstore.google.com/detail/open-selected-links/hcihcignkpajeehfnomlncinacagapdf
विवरण Opens multiple links in the selected content in the current or new window or a tab group.
फ़ाइल का आकार 14.2 KB
स्थापना संख्या 3,341
वर्तमान संस्करण 1.7.3
अंतिम अपडेट 2023-05-09
प्रकाशन तिथि 2020-11-03
रेटिंग 4.80/5 कुल 10 रेटिंग्स
डेवलपर Natarajan Krishnaswami
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nkrishnaswami/open-selected-links
सहायता पृष्ठ URL https://github.com/nkrishnaswami/open-selected-links/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Selected Links",
    "version": "1.7.3",
    "description": "Opens multiple links in the selected content in the current or new window or a tab group.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Open Selected Links"
    },
    "commands": {
        "osl_in_tabs": {
            "description": "Open selected links in new tabs in the current window"
        },
        "osl_in_window": {
            "description": "Open selected links in a new window"
        },
        "osl_in_tab_group": {
            "description": "Open selected links in a new tab group in the current window"
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "scripting",
        "tabGroups"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}