Open Multiple Links

Select text with links and open them all in new tabs

Hvad er Open Multiple Links?

Open Multiple Links er en Chrome-udvidelse udviklet af Marcin Jahn, og dens hovedfunktion er "Select text with links and open them all in new tabs".

Udvidelsesskærmbilleder

screenshot

Download Open Multiple Links-udvidelses-CRX-fil

Download Open Multiple Links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
Officiel URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Beskrivelse Select text with links and open them all in new tabs
Filstørrelse 22.89 KB
Antal Installationer 2,362
Nuværende Version 1.0.0
Senest Opdateret 2023-01-10
Udgivelsesdato 2023-01-08
Bedømmelse 1.67/5 Samlet 6 Bedømmelser
Udvikler Marcin Jahn
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://marcinjahn.com
Hjælpeside-URL https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Understøttede Sprog 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"
    }
}