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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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