Grab Session Links

Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.

Cos'è Grab Session Links?

Grab Session Links è un'estensione di Chrome sviluppata da solidhydrogenblock, e la sua funzione principale è "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Grab Session Links

Scarica i file di estensione Grab Session 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

                        - Copy all links from open tabs (in the current window).
- Reopen a bunch of copied links (in new tabs) by pressing just one button.

Useful in situations where you need to get rid of tab clutter but save links for later.

Icon made by Freepik from www.flaticon.com                    

Informazioni di Base sull'Estensione

Nome Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
URL Ufficiale https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Descrizione Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Dimensione del File 9.96 KB
Conteggio Installazioni 19
Versione Corrente 0.4
Ultimo Aggiornamento 2020-03-19
Data di Pubblicazione 2020-03-19
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore solidhydrogenblock
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grab Session Links",
    "version": "0.4",
    "description": "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "clipboardWrite",
        "clipboardRead"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/save16.png",
        "32": "icons\/save32.png",
        "128": "icons\/save128.png",
        "256": "icons\/save256.png"
    }
}