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.

What is Grab Session Links?

Grab Session Links is a Chrome extension developed by solidhydrogenblock, and its main feature 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.".

Extension Screenshots

screenshot

Download Grab Session Links Extension CRX File

Download Grab Session Links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        - 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                    

Extension Basic Information

Name Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
Official URL https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
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.
File Size 9.96 KB
Installation Count 19
Current Version 0.4
Last Updated 2020-03-19
Publish Date 2020-03-19
Rating 5.00/5 Total 2 Ratings
Developer solidhydrogenblock
Payment Type free
Supported Languages 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"
    }
}