Open Multiple Links

Select text with links and open them all in new tabs

Co to jest Open Multiple Links?

Open Multiple Links to rozszerzenie Chrome opracowane przez Marcin Jahn, a jego główną funkcją jest „Select text with links and open them all in new tabs”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Open Multiple Links

Pobierz pliki rozszerzeń Open Multiple Links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
Oficjalny URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Opis Select text with links and open them all in new tabs
Rozmiar pliku 22.89 KB
Liczba instalacji 2,362
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-01-10
Data Publikacji 2023-01-08
Ocena 1.67/5 Łącznie 6 Oceny
Deweloper Marcin Jahn
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://marcinjahn.com
Adres URL Strony Pomocy https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Obsługiwane Języki 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"
    }
}