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.

Hvad er Grab Session Links?

Grab Session Links er en Chrome-udvidelse udviklet af solidhydrogenblock, og dens hovedfunktion er "Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.".

Udvidelsesskærmbilleder

screenshot

Download Grab Session Links-udvidelses-CRX-fil

Download Grab Session Links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        - 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                    

Grundlæggende oplysninger om udvidelsen

Navn Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
Officiel URL https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Beskrivelse Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Filstørrelse 9.96 KB
Antal Installationer 19
Nuværende Version 0.4
Senest Opdateret 2020-03-19
Udgivelsesdato 2020-03-19
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler solidhydrogenblock
Betalingsmetode free
Understøttede Sprog 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"
    }
}