TabLinkList

This extension makes a list of title and URL from selected tabs.

TabLinkListคืออะไร?

TabLinkList เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://home.u03.itscom.net/skyblue และคุณลักษณะหลักของมันคือ "This extension makes a list of title and URL from selected tabs."

ภาพหน้าจอของส่วนขยาย

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย TabLinkList ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        これは、現在開いているタブの一覧の中から選択されたタブのタイトルとURLをクリップボードにコピーできる拡張機能です。


This is a Google Chrome extension that makes a list of title and URL from selected tabs.
Then you can copy the list to clipboard.

source code is available at http://github.com/skybluefactory/TabLinkList

Copied text sample is following.
---(e.g.)---
YouTube
http://www.youtube.com/

Google
https://www.google.co.jp/

Yahoo! JAPAN
http://www.yahoo.co.jp/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ TabLinkList TabLinkList
ID dimkgicbconccdphlpgonbfmdnlkoaim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tablinklist/dimkgicbconccdphlpgonbfmdnlkoaim
คำอธิบาย This extension makes a list of title and URL from selected tabs.
ขนาดไฟล์ 19.6 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 0.6.3
อัปเดตครั้งล่าสุด 2013-05-27
วันที่เผยแพร่ 2013-05-27
ผู้พัฒนา https://home.u03.itscom.net/skyblue
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/skybluefactory/TabLinkList
URL หน้าช่วยเหลือ https://github.com/skybluefactory/TabLinkList
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabLinkList",
    "description": "This extension makes a list of title and URL from selected tabs.",
    "version": "0.6.3",
    "permissions": [
        "tabs",
        "contextMenus",
        "clipboardWrite"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "TabLinkList",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}