Open Multiple Links

Select text with links and open them all in new tabs

Open Multiple Links क्या है?

Open Multiple Links Marcin Jahn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select text with links and open them all in new tabs"।

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

screenshot

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

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

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

                        Highlight any text and open all the included links at once, in new tabs. Just select the text containing links, right-click it, and select "Open links in new tabs".

The right-click context menu entry for "Open links in new tabs" appears only when the selected text contains any links.

Note that this extension opens only "clickable" links. If a given link is just a text, it will not be included.                    

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

नाम Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
आधिकारिक URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
विवरण Select text with links and open them all in new tabs
फ़ाइल का आकार 22.89 KB
स्थापना संख्या 2,362
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2023-01-10
प्रकाशन तिथि 2023-01-08
रेटिंग 1.67/5 कुल 6 रेटिंग्स
डेवलपर Marcin Jahn
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://marcinjahn.com
सहायता पृष्ठ URL https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Multiple Links",
    "description": "Select text with links and open them all in new tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "32": "assets\/icons\/icon-32.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}