Open Multiple Links

Select text with links and open them all in new tabs

Cos'è Open Multiple Links?

Open Multiple Links è un'estensione di Chrome sviluppata da Marcin Jahn, e la sua funzione principale è "Select text with links and open them all in new tabs".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Open Multiple Links

Scarica i file di estensione Open Multiple Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
URL Ufficiale https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Descrizione Select text with links and open them all in new tabs
Dimensione del File 22.89 KB
Conteggio Installazioni 2,362
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-01-10
Data di Pubblicazione 2023-01-08
Valutazione 1.67/5 Totale 6 Valutazioni
Sviluppatore Marcin Jahn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://marcinjahn.com
URL della Pagina di Aiuto https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Lingue Supportate 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"
    }
}