Open Multiple Links

Select text with links and open them all in new tabs

What is Open Multiple Links?

Open Multiple Links is a Chrome extension developed by Marcin Jahn, and its main feature is "Select text with links and open them all in new tabs".

Extension Screenshots

screenshot

Download Open Multiple Links Extension CRX File

Download Open Multiple Links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
Official URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Description Select text with links and open them all in new tabs
File Size 22.89 KB
Installation Count 2,362
Current Version 1.0.0
Last Updated 2023-01-10
Publish Date 2023-01-08
Rating 1.67/5 Total 6 Ratings
Developer Marcin Jahn
Email [email protected]
Payment Type free
Extension Website https://marcinjahn.com
Help Page URL https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Supported Languages 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"
    }
}