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"
    }
}