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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย solidhydrogenblock และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Grab Session Links

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}