Open Multiple Links

Select text with links and open them all in new tabs

Wat is Open Multiple Links?

Open Multiple Links is een Chrome-extensie ontwikkeld door Marcin Jahn, en de belangrijkste functie is "Select text with links and open them all in new tabs".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Open Multiple Links

Download Open Multiple Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
Officiële URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Beschrijving Select text with links and open them all in new tabs
Bestandsgrootte 22.89 KB
Aantal Installaties 2,362
Huidige Versie 1.0.0
Laatst Bijgewerkt 2023-01-10
Publicatiedatum 2023-01-08
Beoordeling 1.67/5 Totaal 6 Beoordelingen
Ontwikkelaar Marcin Jahn
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://marcinjahn.com
Help Pagina-URL https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Ondersteunde Talen 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"
    }
}