Open Multiple Links

Select text with links and open them all in new tabs

Co je Open Multiple Links?

Open Multiple Links je rozšíření Chrome vyvinuté Marcin Jahn, a jeho hlavní funkcí je „Select text with links and open them all in new tabs“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Open Multiple Links

Stáhněte si soubory rozšíření Open Multiple Links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Open Multiple Links Open Multiple Links
ID aihgofmdijjhegajmdomlafeiklofndl
Oficiální URL https://chromewebstore.google.com/detail/open-multiple-links/aihgofmdijjhegajmdomlafeiklofndl
Popis Select text with links and open them all in new tabs
Velikost souboru 22.89 KB
Počet instalací 2,362
Aktuální Verze 1.0.0
Poslední Aktualizace 2023-01-10
Datum Vydání 2023-01-08
Hodnocení 1.67/5 Celkem 6 Hodnocení
Vývojář Marcin Jahn
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://marcinjahn.com
URL Stránky Nápovědy https://github.com/marcinjahn/open-multiple-links-browser-extension/issues
Podporované Jazyky 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"
    }
}