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.

Wat is Grab Session Links?

Grab Session Links is een Chrome-extensie ontwikkeld door solidhydrogenblock, en de belangrijkste functie is "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Grab Session Links

Download Grab Session Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        - 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                    

Basisinformatie over de Extensie

Naam Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
Officiële URL https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Beschrijving Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Bestandsgrootte 9.96 KB
Aantal Installaties 19
Huidige Versie 0.4
Laatst Bijgewerkt 2020-03-19
Publicatiedatum 2020-03-19
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar solidhydrogenblock
Betalingswijze free
Ondersteunde Talen 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"
    }
}