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
官方網址 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"
    }
}