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.

什么是Grab Session Links?

Grab Session Links是由solidhydrogenblock开发的Chrome扩展程序,该扩展的主要功能是“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

下载Grab Session Links扩展crx文件

下载Grab Session Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - 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                    

扩展基本信息

名称 Grab Session Links Grab Session Links
ID lhciibpofggfoobnonichplmcognkgmo
官方URL https://chrome.google.com/webstore/detail/grab-session-links/lhciibpofggfoobnonichplmcognkgmo
简介 Web extension that allows you to paste and open links, as well as copy all the links from your open tabs with one click.
文件大小 9.96 KB
安装次数 19
当前版本 0.4
更新时间 2020-03-19
上架时间 2020-03-19
评分 5.00/5 共2次评分
开发者 solidhydrogenblock
付费类型 free
支持的语言 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"
    }
}