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.

Apa itu Grab Session Links?

Grab Session Links adalah ekstensi Chrome yang dikembangkan oleh solidhydrogenblock, dan fitur utamanya adalah "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 Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Grab Session Links

Unduh file ekstensi Grab Session Links dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        - 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                    

Informasi Dasar Ekstensi

Nama Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
URL Resmi https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
Deskripsi Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
Ukuran File 9.96 KB
Jumlah Instalasi 19
Versi Saat Ini 0.4
Terakhir Diperbarui 2020-03-19
Tanggal Publikasi 2020-03-19
Penilaian 5.00/5 Total 2 Penilaian
Pengembang solidhydrogenblock
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}