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.

Was ist Grab Session Links?

Grab Session Links ist eine Chrome-Erweiterung, die von solidhydrogenblock entwickelt wurde, und ihr Hauptmerkmal ist "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.".

Erweiterungsscreenshots

screenshot

Grab Session Links-Erweiterungs-CRX-Datei herunterladen

Laden Sie Grab Session Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        - 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                    

Grundlegende Informationen zur Erweiterung

Name Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
Offizielle URL https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Beschreibung Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Dateigröße 9.96 KB
Installationsanzahl 19
Aktuelle Version 0.4
Letztes Update 2020-03-19
Veröffentlichungsdatum 2020-03-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler solidhydrogenblock
Zahlungsart free
Unterstützte Sprachen 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"
    }
}