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.

Co to jest Grab Session Links?

Grab Session Links to rozszerzenie Chrome opracowane przez solidhydrogenblock, a jego główną funkcją jest „Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Grab Session Links

Pobierz pliki rozszerzeń Grab Session Links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        - 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                    

Podstawowe informacje o rozszerzeniu

Nazwa Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
Oficjalny URL https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Opis Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Rozmiar pliku 9.96 KB
Liczba instalacji 19
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2020-03-19
Data Publikacji 2020-03-19
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper solidhydrogenblock
Typ Płatności free
Obsługiwane Języki 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"
    }
}